gemiline / Dockerfile
alanchen1115's picture
Update Dockerfile
8efacf7 verified
raw
history blame
167 Bytes
FROM python:3.9
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]