test / dockerfile
th0mascat's picture
Add application file
d8b4995
raw
history blame
No virus
157 Bytes
FROM python:3.9
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]