Skip to content

Commit

Permalink
fix dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
im4li committed Jun 26, 2024
1 parent 067be47 commit 3c8c082
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ner-submission/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# docker build -t fschlatt/authorship-verification-trivial:0.0.1 .
FROM fschlatt/natural-language-processing-exercises:0.0.1

ADD requirements.txt /code/requirements.txt
ADD run.py /code/run.py

RUN pip install -r /code/requirements.txt

ENTRYPOINT [ "python3", "/code/run.py" ]
1 change: 1 addition & 0 deletions ner-submission/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nltk

0 comments on commit 3c8c082

Please sign in to comment.