File size: 537 Bytes
85c98be 5f0a430 85c98be 5f0a430 85c98be 5f0a430 85c98be 5f0a430 85c98be 5f0a430 85c98be 5f0a430 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
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"]
|