File size: 401 Bytes
39ee501 808502e 39ee501 c014e5f 39ee501 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Use an official Python image as the base
FROM python:3.12-slim
# Set the working directory in the container
WORKDIR /app
# Copy the requirements file and install dependencies
COPY tmp/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
COPY . .
# Expose the port Gradio runs on
EXPOSE 7860
# Command to run the application
CMD ["python", "app.py"]
|