test_deployment / Dockerfile
tosanoob's picture
Update Dockerfile
620a03c verified
raw
history blame
No virus
179 Bytes
FROM python:3.9
WORKDIR /code
COPY * /code
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]