Skip to content

Commit

Permalink
Re-add curl and unzip
Browse files Browse the repository at this point in the history
  • Loading branch information
James Curtin committed Mar 17, 2021
1 parent 664ad57 commit a992873
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
.git/
.github/
.mypy_cache/
**/__pycache__/
cov_html/
docs/
tests/resources/*
io/
site/
tests/resources/
5 changes: 5 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ RUN python -m nltk.downloader wordnet punkt

FROM python:3.8-slim-buster

RUN apt-get update && apt-get install --no-install-recommends --yes \
curl \
unzip \
&& rm -rf /var/lib/apt/lists/*

COPY --from=builder /root/nltk_data /root/nltk_data
COPY --from=builder /requirements /usr/local

Expand Down

0 comments on commit a992873

Please sign in to comment.