Spaces:
Runtime error
Runtime error
File size: 377 Bytes
222c9d6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Use a base Python image
FROM python:3.11
# Set the working directory inside the container
WORKDIR /app
# Copy the requirements file and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy your application code
COPY . .
# Expose the port Gradio runs on
EXPOSE 7860
# Command to run your app
CMD ["python3.11", "app.py"]
|