FROM python:3.10-slim | |
# Set working directory | |
WORKDIR /app | |
# Copy all files | |
COPY . . | |
# Install Python dependencies | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Make a writable cache directory for model downloads | |
RUN mkdir -p /app/cache | |
# Set environment variable to use this cache path (optional but good practice) | |
ENV HF_HOME=/app/cache | |
ENV TRANSFORMERS_CACHE=/app/cache | |
ENV HF_HUB_CACHE=/app/cache | |
# Expose FastAPI port | |
EXPOSE 7860 | |
# Run the FastAPI app | |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] | |