Spaces:
Sleeping
Sleeping
Commit ·
527f105
1
Parent(s): 75af0d7
Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -76,10 +76,9 @@ USER root
|
|
| 76 |
RUN --mount=target=requirements.txt,source=requirements.txt \
|
| 77 |
pip install --no-cache-dir --upgrade -r requirements.txt
|
| 78 |
|
|
|
|
| 79 |
RUN chmod +x start_server.sh
|
| 80 |
|
| 81 |
-
COPY --chown=user login.html /home/user/miniconda/lib/python3.9/site-packages/jupyter_server/templates/login.html
|
| 82 |
-
|
| 83 |
ENV PYTHONUNBUFFERED=1 \
|
| 84 |
GRADIO_ALLOW_FLAGGING=never \
|
| 85 |
GRADIO_NUM_PORTS=1 \
|
|
|
|
| 76 |
RUN --mount=target=requirements.txt,source=requirements.txt \
|
| 77 |
pip install --no-cache-dir --upgrade -r requirements.txt
|
| 78 |
|
| 79 |
+
COPY --chown=root . $HOME/app
|
| 80 |
RUN chmod +x start_server.sh
|
| 81 |
|
|
|
|
|
|
|
| 82 |
ENV PYTHONUNBUFFERED=1 \
|
| 83 |
GRADIO_ALLOW_FLAGGING=never \
|
| 84 |
GRADIO_NUM_PORTS=1 \
|