Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
FROM python:3.10-slim
|
| 2 |
RUN apt update -y && apt install wget -y
|
| 3 |
-
RUN pip install -r
|
| 4 |
CMD python app.py
|
|
|
|
| 1 |
FROM python:3.10-slim
|
| 2 |
RUN apt update -y && apt install wget -y
|
| 3 |
+
RUN pip install -r requirements.txt
|
| 4 |
CMD python app.py
|