bearking58 commited on
Commit
dae957b
·
1 Parent(s): 4660874

fix: add unzip dependency

Browse files
Files changed (1) hide show
  1. core-model-prediction/Dockerfile +2 -1
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 pip install --no-cache-dir -r requirements.txt
 
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