Skip to content

Commit

Permalink
docker file fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristian-Knudsen committed Nov 8, 2023
1 parent 403ffd6 commit de331d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile_file_loader
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ COPY requirements.txt .

RUN pip install -r requirements.txt

COPY . .

VOLUME [ "${DIR}/file_loader" ]

ENTRYPOINT [ "python3" , "main.py" ]
2 changes: 2 additions & 0 deletions Dockerfile_spell_checking
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ COPY requirements.txt .

RUN pip install -r requirements.txt

COPY . .

VOLUME [ "${DIR}/spell_checking" ]

ENTRYPOINT [ "python3" , "main.py" ]

0 comments on commit de331d7

Please sign in to comment.