From c93f50460ad61d93fe2321b49eeac1e3852bb1b4 Mon Sep 17 00:00:00 2001 From: BadStorm Developer Date: Sat, 12 Sep 2026 21:28:24 +0200 Subject: [PATCH] fix(qwentts): fix GPU detection race and add ROCm flash-attn support --- containers/qwentts/qwentts.Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/qwentts/qwentts.Containerfile b/containers/qwentts/qwentts.Containerfile index 7d69278..56a75b9 100644 --- a/containers/qwentts/qwentts.Containerfile +++ b/containers/qwentts/qwentts.Containerfile @@ -21,7 +21,7 @@ EXPOSE 8000 # sox (system tool, required at runtime by qwen-tts for audio processing) # ffmpeg (optional but commonly needed for reference-audio format conversion) RUN apt-get update \ - && apt-get install -y --no-install-recommends sox ffmpeg curl git \ + && apt-get install -y --no-install-recommends sox ffmpeg curl git g++ \ && apt-get autoremove -y \ && apt-get clean -y \ && rm -rf /var/lib/apt/lists/*