Spaces:
Sleeping
Sleeping
| FROM python:3.9-slim | |
| # Install ffmpeg (required for audio processing) | |
| RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/* | |
| # Set up a new user named "user" with user ID 1000 | |
| RUN useradd -m -u 1000 user | |
| USER user | |
| ENV HOME=/home/user \ | |
| PATH=/home/user/.local/bin:$PATH | |
| WORKDIR $HOME/app | |
| # Install dependencies | |
| COPY --chown=user requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Copy application code | |
| COPY --chown=user . . | |
| # Run the API on the required Hugging Face port | |
| CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |