File size: 154 Bytes
68799eb
 
 
 
 
3a75821
5ef1619
3a75821
 
 
68799eb
 
1
2
3
4
5
6
7
8
9
10
11
12

FROM python:3.9

WORKDIR /

RUN pip install pipenv

COPY Pipfile .

RUN pipenv install

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