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/*