Spaces:
Running
Running
File size: 1,451 Bytes
1712ab6 34ee480 1712ab6 34ee480 1712ab6 34ee480 1712ab6 34ee480 1712ab6 34ee480 | 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 37 38 | FROM python:3.12-slim
# Install system dependencies for audio/image processing
RUN apt-get update && apt-get install -y --no-install-recommends \
ffmpeg \
libsndfile1 \
&& rm -rf /var/lib/apt/lists/*
RUN useradd -m -u 1000 user
WORKDIR /app
# -------------------------------------------
# Step 1: Install PyTorch CPU-only (pinned to 2.5.1 for PyG compatibility)
# -------------------------------------------
RUN pip install --no-cache-dir -U pip && \
pip install --no-cache-dir torch==2.5.1+cpu torchvision==0.20.1+cpu --index-url https://download.pytorch.org/whl/cpu
# -------------------------------------------
# Step 2: Install PyTorch Geometric + extensions (CPU)
# -------------------------------------------
RUN pip install --no-cache-dir torch_geometric && \
pip install --no-cache-dir pyg_lib torch_scatter torch_sparse torch_cluster -f https://data.pyg.org/whl/torch-2.5.1+cpu.html
# -------------------------------------------
# Step 3: Install remaining requirements
# -------------------------------------------
COPY --chown=user requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
# -------------------------------------------
# Step 4: Copy application
# -------------------------------------------
COPY --chown=user . /app
USER user
ENV HOME=/home/user PATH=/home/user/.local/bin:$PATH
CMD ["waitress-serve", "--host=0.0.0.0", "--port=7860", "python_executor:app"] |