Spaces:
Running
Running
File size: 1,124 Bytes
fa9567d 3ea0866 fa9567d 6db1994 c9c104a 6db1994 fa9567d a8943e2 fa9567d 3ea0866 | 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 | FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
ffmpeg \
git \
gcc \
g++ \
&& rm -rf /var/lib/apt/lists/*
# Pin setuptools<81 (pkg_resources was removed in setuptools>=81).
# --no-build-isolation makes pip skip creating an isolated subprocess env,
# so it uses OUR pinned setuptools instead of downloading the latest one.
RUN pip install --no-cache-dir "setuptools<81" wheel cython
# Install legacy packages with --no-build-isolation so pip reuses the
# pinned setuptools above instead of pulling setuptools>=81 into a temp env.
RUN pip install --no-cache-dir --no-build-isolation openai-whisper==20231117
RUN pip install --no-cache-dir --no-build-isolation https://github.com/ludlows/python-pesq/archive/master.zip
# Copy and install remaining requirements
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY . .
# Expose port (HF Spaces uses port 7860)
EXPOSE 7860
# Run FastAPI with uvicorn
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |