Spaces:
Sleeping
Sleeping
File size: 271 Bytes
46abd0a 15a2574 46abd0a 15a2574 46abd0a 15a2574 e2c5081 46abd0a 15a2574 e2c5081 46abd0a 15a2574 e2c5081 46abd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM python:3.10-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --upgrade pip && pip install -r requirements.txt
# Copy app file
COPY app.py .
# Expose the port Gradio uses
EXPOSE 7860
# Run the application
CMD ["python", "app.py"]
|