vits_yz / Dockerfile
byzp's picture
-
40fac91
raw
history blame contribute delete
No virus
326 Bytes
FROM python:3.10
ENV TZ Asia/Shanghai
WORKDIR /vits
COPY server /vits
COPY ./requirements.txt /vits/requirements.txt
RUN apt update && apt install google-perftools cmake -y
RUN pip install --no-cache-dir --upgrade -r /vits/requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
EXPOSE 7860