fix: keep root user in Dockerfile (match upstream image)

This commit is contained in:
2026-04-30 15:14:35 +00:00
parent 9fbfc1dc51
commit bb64234223

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