Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -2,7 +2,7 @@ FROM python:latest
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
-
COPY
|
| 6 |
|
| 7 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 8 |
|
|
@@ -10,6 +10,5 @@ RUN mkdir /.cache && chmod 777 /.cache
|
|
| 10 |
|
| 11 |
RUN mkdir /app/mayo && chmod 777 /app/mayo
|
| 12 |
|
| 13 |
-
COPY app.py .
|
| 14 |
|
| 15 |
CMD ["python3", "app.py"]
|
|
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
+
COPY . .
|
| 6 |
|
| 7 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 8 |
|
|
|
|
| 10 |
|
| 11 |
RUN mkdir /app/mayo && chmod 777 /app/mayo
|
| 12 |
|
|
|
|
| 13 |
|
| 14 |
CMD ["python3", "app.py"]
|