nump commited on
Commit
86fc265
1 Parent(s): 7834b9b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -1,5 +1,6 @@
1
  FROM python:3.11
2
- COPY . .
 
3
  RUN pip install -r req.txt
4
  EXPOSE 7860
5
- CMD ['python','main.py']
 
1
  FROM python:3.11
2
+ COPY . /app
3
+ WORKDIR /app
4
  RUN pip install -r req.txt
5
  EXPOSE 7860
6
+ CMD ["python", "/app/main.py"]