Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -40,6 +40,7 @@ RUN curl -fsSL https://code-server.dev/install.sh | sh
|
|
| 40 |
COPY entrypoint.sh /entrypoint.sh
|
| 41 |
COPY backup.py /backup.py
|
| 42 |
COPY restore.py /restore.py
|
|
|
|
| 43 |
RUN chmod +x /entrypoint.sh
|
| 44 |
|
| 45 |
WORKDIR /home/vscode
|
|
@@ -53,4 +54,4 @@ USER vscode
|
|
| 53 |
RUN pip install huggingface_hub[cli]
|
| 54 |
|
| 55 |
EXPOSE 7860
|
| 56 |
-
|
|
|
|
| 40 |
COPY entrypoint.sh /entrypoint.sh
|
| 41 |
COPY backup.py /backup.py
|
| 42 |
COPY restore.py /restore.py
|
| 43 |
+
COPY app.py /app.py
|
| 44 |
RUN chmod +x /entrypoint.sh
|
| 45 |
|
| 46 |
WORKDIR /home/vscode
|
|
|
|
| 54 |
RUN pip install huggingface_hub[cli]
|
| 55 |
|
| 56 |
EXPOSE 7860
|
| 57 |
+
CMD ["python3", "app.py"]
|