New-Place / Dockerfile
oflakne26's picture
Update Dockerfile
c552a9a verified
raw
history blame
No virus
181 Bytes
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"]