From b3fa424661c85a00e716d5acddb4fdfcdb71d38a Mon Sep 17 00:00:00 2001 From: Thierry Pouplier Date: Sat, 9 May 2026 14:12:06 +0000 Subject: [PATCH] fix: correct COPY path for patch_tts_tool.py (build context is ai/) --- ai/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ai/Dockerfile b/ai/Dockerfile index b6ed67d..1413696 100644 --- a/ai/Dockerfile +++ b/ai/Dockerfile @@ -53,7 +53,7 @@ urllib.request.urlretrieve(url + '.json', base + '/en_US-ryan-high.onnx.json') PYEOF # ---------- Patch tts_tool.py: replace Edge TTS fallback with Piper ---------- -COPY ai/patch_tts_tool.py /tmp/patch_tts_tool.py +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 ----------