Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -1,5 +1,7 @@
|
|
| 1 |
FROM python:3
|
| 2 |
|
|
|
|
| 3 |
RUN pip install -r requirements.txt
|
| 4 |
|
|
|
|
| 5 |
CMD ["python3", "app.py"]
|
|
|
|
| 1 |
FROM python:3
|
| 2 |
|
| 3 |
+
COPY requirements.txt
|
| 4 |
RUN pip install -r requirements.txt
|
| 5 |
|
| 6 |
+
COPY . .
|
| 7 |
CMD ["python3", "app.py"]
|