Vaibhav84 commited on
Commit
69df6bd
·
verified ·
1 Parent(s): 08553d8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -3
Dockerfile CHANGED
@@ -1,10 +1,12 @@
1
  FROM python:3.9
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
 
 
1
  FROM python:3.9
2
 
3
+ COPY . .
4
+
5
+ # Set the working directory to /
6
+ WORKDIR /
7
 
 
8
 
9
+ RUN pip install --no-cache-dir --upgrade -r /requirements.txt
10
 
11
  COPY . .
12