gaurav22iiserb commited on
Commit
b4a40f3
·
verified ·
1 Parent(s): 7757f44
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,10 +1,10 @@
1
  FROM python:3.9
2
 
3
- #WORKDIR /code
4
 
5
  WORKDIR ./
6
 
7
- COPY ./requirements.txt /code/requirements.txt
8
 
9
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
10
 
 
1
  FROM python:3.9
2
 
3
+ #WORKDIR code
4
 
5
  WORKDIR ./
6
 
7
+ COPY ./requirements.txt ./requirements.txt
8
 
9
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
10