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