Spaces:
Runtime error
Runtime error
File size: 341 Bytes
775d264 ae648f1 651dee2 ae648f1 651dee2 ae648f1 651dee2 775d264 ae648f1 651dee2 775d264 2694859 651dee2 775d264 651dee2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM jupyter/minimal-notebook:python-3.9
USER root
# Install Gradio
RUN pip install --no-cache-dir gradio
# Copy application files
COPY app.py /home/jovyan/
COPY welcome.ipynb /home/jovyan/
# Switch back to non-root user
USER jovyan
# Expose the port Hugging Face expects
EXPOSE 7860
# Run the app
CMD ["python", "/home/jovyan/app.py"] |