Test / DockerFile
hashimotoa961
1st commit
7f4c438
raw
history blame
209 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
COPY ./app.py /code/app.py
RUN pip install -r requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]