Gruhit Patel commited on
Commit
0c4bc28
·
verified ·
1 Parent(s): 1fab54b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -3,11 +3,11 @@
3
 
4
  FROM python:3.9
5
 
6
- WORKDIR /code
7
 
8
- COPY ./requirements.txt /code/requirements.txt
9
 
10
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
 
12
  COPY . .
13
 
 
3
 
4
  FROM python:3.9
5
 
6
+ COPY . .
7
 
8
+ WORKDIR /
9
 
10
+ RUN pip install --no-cache-dir --upgrade -r /requirements.txt
11
 
12
  COPY . .
13