File size: 419 Bytes
8bf2c2b
8f19ae8
8bf2c2b
8f19ae8
 
8bf2c2b
8f19ae8
70534f3
8bf2c2b
 
8f19ae8
ef9649f
8bf2c2b
8f19ae8
8bf2c2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.9-slim

WORKDIR /code

# Install system audio libraries
RUN apt-get update && apt-get install -y ffmpeg libsndfile1 libmagic1 && rm -rf /var/lib/apt/lists/*

# Install Python dependencies
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

# Copy all project files
COPY . .

CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]