File size: 175 Bytes
0944e33
2f9c8ed
0944e33
2f9c8ed
0944e33
2f9c8ed
0944e33
2f9c8ed
0944e33
2f9c8ed
 
 
0944e33
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python

COPY ./requirements.txt .

RUN pip install -r requirements.txt

WORKDIR /app

COPY . .

EXPOSE 8080

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