File size: 177 Bytes
c86c4cd
 
 
0b9c301
 
 
c86c4cd
0b9c301
5feca69
0b9c301
ce79cfe
0b9c301
1
2
3
4
5
6
7
8
9
10
11
12



FROM python:3.10-slim

WORKDIR /app

COPY . /app

RUN pip install --no-cache-dir -r requirements.txt

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