xttsanime / Dockerfile
sca255's picture
Update Dockerfile
663dd9d verified
raw
history blame contribute delete
256 Bytes
FROM python:3.10
RUN apt update
RUN apt install portaudio19-dev -y
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user . /app
RUN pip install huggingface_hub hf_transfer
CMD ["python","app.py"]