JPBianchi commited on
Commit
12fff34
1 Parent(s): 04c92e3

fixed reqs path in docker

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -9,9 +9,8 @@ ENV ENVIRONMENT=dev
9
 
10
  COPY ./app /app
11
  WORKDIR .
12
- RUN mkdir /app/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')"
 
9
 
10
  COPY ./app /app
11
  WORKDIR .
 
12
 
13
+ RUN pip install --no-cache-dir --upgrade -r app/requirements.txt
14
  # ^ no caching of the packages to save space
15
 
16
  # RUN python -c "import nltk; nltk.download('stopwords')"