Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
|
2 |
FROM python:3.9
|
3 |
WORKDIR /app
|
4 |
-
RUN pip3 install -r
|
5 |
CMD ["python3", "planer.py", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
1 |
|
2 |
FROM python:3.9
|
3 |
WORKDIR /app
|
4 |
+
RUN pip3 install -r requirements.txt
|
5 |
CMD ["python3", "planer.py", "--host", "0.0.0.0", "--port", "7860"]
|