Spaces:
Sleeping
Sleeping
File size: 883 Bytes
d7836e8 fd166a6 9bb7d82 fd166a6 9bb7d82 2446566 fd166a6 |
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 27 28 29 30 31 32 33 34 35 36 |
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
git \
build-essential \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
# Create cache directory with proper permissions
RUN mkdir -p /app/.cache && chmod 777 /app/.cache
# Copy requirements and install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY . .
# Expose port 7860 (HF Spaces standard)
EXPOSE 7860
# Set environment variables
ENV PYTHONUNBUFFERED=1
ENV PORT=7860
ENV HF_HOME=/app/.cache
ENV HF_DATASETS_CACHE=/app/.cache
ENV TRANSFORMERS_CACHE=/app/.cache
ENV NUMBA_CACHE_DIR=/app/.cache/numba
ENV NUMBA_DISABLE_JIT=1
# Run the FastAPI application
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |