Release NVIDIA WakeWord Trainer v22

This commit is contained in:
MasterPhooey
2026-08-02 20:46:04 -05:00
parent 2b1320f1f3
commit 2a88090b85
37 changed files with 11685 additions and 3628 deletions

View File

@@ -6,7 +6,8 @@ ENV DEBIAN_FRONTEND=noninteractive
# System deps
RUN apt-get update && apt-get install -y --no-install-recommends \
python3.12 python3.12-venv python3.12-dev python3-pip python-is-python3 \
git wget curl unzip patch ninja-build ca-certificates nano less libgomp1 \
git wget curl unzip patch ninja-build build-essential cmake pkg-config \
ca-certificates nano less libgomp1 ffmpeg sox libsox-fmt-all libsndfile1 espeak-ng \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /data
@@ -27,14 +28,16 @@ COPY --chown=root:root --chmod=0755 \
requirements.txt \
/root/mww-scripts/
COPY --chown=root:root --chmod=0644 tts_config.py /root/mww-scripts/tts_config.py
# CLI folder
COPY --chown=root:root cli/ /root/mww-scripts/cli/
# Make all CLI scripts executable (avoids "Permission denied")
RUN chmod -R a+x /root/mww-scripts/cli
# Static UI for trainer
COPY --chown=root:root --chmod=0644 static/index.html /root/mww-scripts/static/index.html
# Prebuilt Vue/TypeScript UI (Node.js is not required at runtime)
COPY --chown=root:root static/ /root/mww-scripts/static/
# trainer server
CMD ["/bin/bash", "-lc", "/root/mww-scripts/run.sh"]