Spaces:
Running on Zero
Running on Zero
File size: 754 Bytes
ff74243 | 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.11-slim
WORKDIR /app
# Install system audio dependencies (required for soundfile)
RUN apt-get update && apt-get install -y --no-install-recommends \
libsndfile1 \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Install PyTorch CPU wheels first to keep the image lightweight and fast
RUN pip install --no-cache-dir torch torchvision --index-url https://download.pytorch.org/whl/cpu
# Install Python requirements
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application
COPY . .
RUN pip install -e .
# Hugging Face Spaces standard port is 7860
ENV PORT=7860
EXPOSE 7860
# Start Uvicorn
CMD ["sh", "-c", "uvicorn backend.main:app --host 0.0.0.0 --port ${PORT:-7860}"]
|