Spaces:
Sleeping
Sleeping
File size: 714 Bytes
18b88bf | 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 | FROM python:3.9.9-slim
# Copy static ffmpeg binaries
COPY --from=mwader/static-ffmpeg:6.0 /ffmpeg /usr/local/bin/
COPY --from=mwader/static-ffmpeg:6.0 /ffprobe /usr/local/bin/
# Set working directory
WORKDIR /app
# Copy requirements first to leverage Docker cache
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Download the models and clean up cache in the same layer
COPY download_model.py .
RUN python download_model.py && \
rm -rf /root/.cache/huggingface
# Copy the rest of the application
COPY . .
# Expose the port
EXPOSE 7860
# Run the application
CMD gunicorn --bind 0.0.0.0:${PORT:-7860} --workers 1 --threads 8 --timeout 0 "app:app" |