1234 / Dockerfile
zwq2018's picture
Update Dockerfile
f8fabb7
raw
history blame
292 Bytes
# 使用Hugging Face提供的基础镜像
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
COPY ./ /code/.
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]