Spaces:
Sleeping
Sleeping
File size: 572 Bytes
61e4931 60a493f 3d1ece7 61e4931 bcd4831 61e4931 |
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 26 |
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Create cache and db directories and set permissions
RUN mkdir -p /app/cache /app/db && chmod -R 777 /app/cache /app/db
# Set environment variable for Hugging Face cache
ENV TRANSFORMERS_CACHE=/app/cache
ENV HF_HOME=/app/cache
# Copy requirements file
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY . .
# Expose port 7860 (Hugging Face default)
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |