Spaces:
Running
Running
File size: 314 Bytes
0efa81e 32a0dd1 0efa81e 32a0dd1 0efa81e 32a0dd1 0efa81e 32a0dd1 0efa81e 32a0dd1 0efa81e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Copy the application files
COPY app.py /app
COPY requirements.txt /app
# Install required Python libraries
RUN pip install --no-cache-dir -r requirements.txt
# Expose the default Gradio port
EXPOSE 7860
# Run the application
CMD ["python", "app.py"] |