OlgaKo commited on
Commit
a385753
1 Parent(s): 9f6f19c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
 
2
  FROM python:3.9
3
  WORKDIR /app
4
- COPY requirements.txt/app/requirements.txt
5
  RUN pip3 install -r requirements.txt
6
  CMD ["python3", "planer.py", "--host", "0.0.0.0", "--port", "7860"]
 
1
 
2
  FROM python:3.9
3
  WORKDIR /app
4
+ COPY . /app
5
  RUN pip3 install -r requirements.txt
6
  CMD ["python3", "planer.py", "--host", "0.0.0.0", "--port", "7860"]