test / Dockerfile
th0mascat's picture
Update Dockerfile
1f3345c verified
raw
history blame
124 Bytes
FROM python:3.9
WORKDIR /
COPY . .
RUN pipenv install
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]