Piper-TTS-Spanish / Dockerfile
HirCoir's picture
Update Dockerfile
abf8910 verified
raw
history blame
No virus
306 Bytes
# you will also find guides on how best to write your Dockerfile
FROM python:3.9
WORKDIR /code
RUN pip install --no-cache-dir gradio
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
CMD ["python3", "app.py"]