Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +9 -11
Dockerfile
CHANGED
@@ -20,21 +20,19 @@ RUN pip install --no-cache-dir \
|
|
20 |
RUN useradd -m jupyter
|
21 |
RUN mkdir -p /app/notebooks && chown -R jupyter:jupyter /app
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
# Switch to non-root user
|
24 |
USER jupyter
|
25 |
|
26 |
-
# Copy example notebook
|
27 |
-
COPY --chown=jupyter:jupyter welcome.ipynb /app/notebooks/
|
28 |
-
|
29 |
# Expose port
|
30 |
EXPOSE 7860
|
31 |
|
32 |
-
# Create a script to run both servers
|
33 |
-
RUN echo '#!/bin/bash\n\
|
34 |
-
jupyter notebook --ip=0.0.0.0 --port=8888 --no-browser --NotebookApp.token="" --NotebookApp.password="" --NotebookApp.allow_origin="*" --NotebookApp.disable_check_xsrf=True --notebook-dir=/app/notebooks &\n\
|
35 |
-
python -c "import gradio as gr; demo = gr.Interface(fn=lambda: None, inputs=[], outputs=[gr.HTML(\"<div style=\\\"text-align:center; padding:10px;\\\"><h2>Mobile-Friendly Jupyter Notebook</h2><p>The notebook interface will appear below:</p></div><iframe src=\\\"/proxy/8888/tree\\\" width=\\\"100%\\\" height=\\\"800px\\\" frameborder=\\\"0\\\" style=\\\"overflow:hidden;\\\"></iframe>\")], title=\"Jupyter Notebook\", css=\".gradio-container {max-width: 100% !important; padding: 0 !important;} .min-h-\[48rem\] {min-height: auto !important;}\"); demo.launch(server_port=7860, share=False)"\n' > /app/start.sh
|
36 |
-
|
37 |
-
RUN chmod +x /app/start.sh
|
38 |
-
|
39 |
# Start servers
|
40 |
-
CMD ["/app/
|
|
|
20 |
RUN useradd -m jupyter
|
21 |
RUN mkdir -p /app/notebooks && chown -R jupyter:jupyter /app
|
22 |
|
23 |
+
# Copy files
|
24 |
+
COPY --chown=jupyter:jupyter welcome.ipynb /app/notebooks/
|
25 |
+
COPY --chown=jupyter:jupyter app.py /app/
|
26 |
+
COPY --chown=jupyter:jupyter run.sh /app/
|
27 |
+
|
28 |
+
# Make script executable
|
29 |
+
RUN chmod +x /app/run.sh
|
30 |
+
|
31 |
# Switch to non-root user
|
32 |
USER jupyter
|
33 |
|
|
|
|
|
|
|
34 |
# Expose port
|
35 |
EXPOSE 7860
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
# Start servers
|
38 |
+
CMD ["/app/run.sh"]
|