Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -9,9 +9,9 @@ WORKDIR /app
|
|
| 9 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 10 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 11 |
|
| 12 |
-
COPY
|
| 13 |
|
| 14 |
-
CMD ["python", "
|
| 15 |
|
| 16 |
#COPY --chown=user . /app
|
| 17 |
|
|
|
|
| 9 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 10 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 11 |
|
| 12 |
+
COPY app.py .
|
| 13 |
|
| 14 |
+
CMD ["python", "app.py"]
|
| 15 |
|
| 16 |
#COPY --chown=user . /app
|
| 17 |
|