Spaces:
Runtime error
Runtime error
File size: 223 Bytes
4f200a0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.11-slim
WORKDIR /app
# Install dependencies
RUN pip install --no-cache-dir gradio==4.44.0 huggingface-hub>=0.20.0
# Copy application
COPY app.py .
# Expose port
EXPOSE 7860
# Run
CMD ["python", "app.py"]
|