feat(hermes): add Dockerfile for voice support with GPU STT #25

Closed
Hermes wants to merge 4 commits from feat/hermes-voice-gpu-support into master
7 changed files with 632 additions and 1 deletions
Showing only changes of commit bb64234223 - Show all commits

View File

@@ -16,9 +16,6 @@ RUN uv pip install --no-cache-dir \
numpy \
faster-whisper
# Switch back to hermes user
USER hermes
# Health check for voice readiness
HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
CMD python3 -c "import sounddevice, faster_whisper; print('voice deps OK')" || exit 1