From 734bc77f72e5e8695c353972dce668cf26a12c7d Mon Sep 17 00:00:00 2001 From: Shawn Jackson Date: Mon, 4 May 2026 13:37:07 -0700 Subject: [PATCH] RE1-T115 Docker build fix --- Web/Resgrid.Web.Tts/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web/Resgrid.Web.Tts/Dockerfile b/Web/Resgrid.Web.Tts/Dockerfile index 54efcb38..1061b77c 100644 --- a/Web/Resgrid.Web.Tts/Dockerfile +++ b/Web/Resgrid.Web.Tts/Dockerfile @@ -28,7 +28,7 @@ RUN apt-get update \ ca-certificates \ curl \ && mkdir -p /usr/local/share/piper-voices \ - && curl -fsSL "https://github.com/rhasspy/piper/releases/download/${PIPER_VERSION}/piper_linux_x86_64.tar.gz" -o /tmp/piper.tar.gz \ + && curl -fsSL "https://github.com/rhasspy/piper/releases/download/${PIPER_VERSION}/piper_amd64.tar.gz" -o /tmp/piper.tar.gz \ && tar -xzf /tmp/piper.tar.gz -C /tmp \ && mv /tmp/piper/piper /usr/local/bin/piper \ && chmod +x /usr/local/bin/piper \