File size: 181 Bytes
5dab16f
 
c552a9a
bf70b5e
c552a9a
 
 
5dab16f
 
1
2
3
4
5
6
7
8
9
FROM python:3.9

WORKDIR /code

COPY ./ /code

RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

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