From 8e9a75fe5c915239a5eb05c72b670ea1477f4a25 Mon Sep 17 00:00:00 2001 From: Thierry Pouplier Date: Sat, 9 May 2026 14:28:35 +0000 Subject: [PATCH] fix: remove patch step from Dockerfile (build context is just ai/) --- ai/Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ai/Dockerfile b/ai/Dockerfile index 1d319cf..36ca11a 100644 --- a/ai/Dockerfile +++ b/ai/Dockerfile @@ -52,11 +52,7 @@ url = 'https://huggingface.co/rhasspy/piper-voices/resolve/main/en/en_US/norman/ urllib.request.urlretrieve(url, base + '/en_US-norman-medium.onnx') urllib.request.urlretrieve(url + '.json', base + '/en_US-norman-medium.onnx.json') PYEOF - -# ---------- Patch tts_tool.py: replace Edge TTS fallback with Piper ---------- -COPY patch_tts_tool.py /tmp/patch_tts_tool.py -RUN /opt/hermes/.venv/bin/python3 /tmp/patch_tts_tool.py && rm /tmp/patch_tts_tool.py - + # ---------- Runtime ---------- ENV HERMES_HOME=/opt/data ENV PATH="/opt/data/.local/bin:${PATH}"