File size: 154 Bytes
ef3aee7
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:latest

COPY . /app

WORKDIR /app

RUN pip install -r requirements.txt

ENTRYPOINT [ "uvicorn" ]

CMD [ "app.main:app", "--host", "0.0.0.0" ]