fixed reqs path
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -11,7 +11,7 @@ COPY ./app /app
|
|
11 |
WORKDIR .
|
12 |
RUN mkdir /data
|
13 |
|
14 |
-
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
15 |
# ^ no caching of the packages to save space
|
16 |
|
17 |
# RUN python -c "import nltk; nltk.download('stopwords')"
|
|
|
11 |
WORKDIR .
|
12 |
RUN mkdir /data
|
13 |
|
14 |
+
RUN pip install --no-cache-dir --upgrade -r app/requirements.txt
|
15 |
# ^ no caching of the packages to save space
|
16 |
|
17 |
# RUN python -c "import nltk; nltk.download('stopwords')"
|