teven commited on
Commit
a331216
1 Parent(s): 715558e
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -1,10 +1,10 @@
1
  FROM python:3.7
2
 
3
- WORKDIR /app_to_share
4
 
5
- COPY ./requirements.txt /app_to_share/requirements.txt
6
 
7
- RUN pip install --no-cache-dir --upgrade -r /app_to_share/requirements.txt
8
 
9
  COPY . .
10
 
1
  FROM python:3.7
2
 
3
+ WORKDIR /code
4
 
5
+ COPY ./requirements.txt /code/requirements.txt
6
 
7
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
  COPY . .
10