Spaces:
Runtime error
Runtime error
File size: 330 Bytes
91d6d06 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Use official Python image
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Copy requirements
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy all code
COPY . .
# Expose port for Gradio
EXPOSE 7860
# Default command to run the app
CMD ["python", "app.py"]
|