Spaces:
Sleeping
Sleeping
File size: 235 Bytes
3577549 46efefc d588ddd 46efefc 2deee95 46efefc 2deee95 46efefc |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Use an official Python slim image
FROM python:3.10-slim
# Install Python dependencies
COPY requirements.txt .
RUN pip install -r requirements.txt
# Copy the application code
COPY . .
# Run the Gradio app
CMD ["python3", "app.py"]
|