HirCoir commited on
Commit
9196b54
1 Parent(s): df6cee9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -14,7 +14,8 @@ WORKDIR /app
14
  COPY . /app
15
  COPY app.py /app
16
  COPY index.html /app/templates/index.html
17
-
 
18
  # Expone el puerto en el que Flask se ejecutará dentro del contenedor
19
  EXPOSE 7860
20
 
 
14
  COPY . /app
15
  COPY app.py /app
16
  COPY index.html /app/templates/index.html
17
+ RUN wget https://github.com/rhasspy/piper/releases/download/2023.11.14-2/piper_linux_x86_64.tar.gz
18
+ RUN tar xvf piper_linux_x86_64.tar.gz
19
  # Expone el puerto en el que Flask se ejecutará dentro del contenedor
20
  EXPOSE 7860
21