File size: 458 Bytes
617629f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# Use an official lightweight Python image
FROM python:3.12-slim
# Set working directory inside the container
WORKDIR /app
# Set the Hugging Face cache directory to /tmp, which is writable
ENV HF_HOME="/tmp"
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the app
COPY . .
# Expose Gradio's default port
EXPOSE 7860
# Run the app
CMD ["python", "-u", "app.py"]
|