# 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"] | |