Piper-TTS-Spanish / Dockerfile
HirCoir's picture
Update Dockerfile
ff9d037 verified
raw
history blame
No virus
344 Bytes
# you will also find guides on how best to write your Dockerfile
ARG GRADIO_SERVER_PORT=7860
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
EXPOSE 7860
CMD ["python3", "app.py"]