Spaces:
Running
Running
Commit
·
dae957b
1
Parent(s):
4660874
fix: add unzip dependency
Browse files
core-model-prediction/Dockerfile
CHANGED
@@ -8,7 +8,8 @@ WORKDIR /app
|
|
8 |
COPY . /app
|
9 |
|
10 |
# Install any needed packages specified in requirements.txt
|
11 |
-
RUN
|
|
|
12 |
|
13 |
# Download NLTK data
|
14 |
RUN python -m nltk.downloader punkt wordnet averaged_perceptron_tagger
|
|
|
8 |
COPY . /app
|
9 |
|
10 |
# Install any needed packages specified in requirements.txt
|
11 |
+
RUN apt-get update && apt-get install -y unzip \
|
12 |
+
&& pip install --no-cache-dir -r requirements.txt
|
13 |
|
14 |
# Download NLTK data
|
15 |
RUN python -m nltk.downloader punkt wordnet averaged_perceptron_tagger
|