File size: 302 Bytes
2ae3e5e
dde2f3d
 
 
2ae3e5e
dde2f3d
 
2ae3e5e
 
b421da1
dde2f3d
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.11

WORKDIR /app

RUN apt-get update && apt-get install -y git libsndfile1 ffmpeg

COPY requirements.txt .
RUN pip install -r requirements.txt
RUN pip install uvicorn[standard]

COPY api.py .

EXPOSE 7860

CMD ["python", "-m", "uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]