This commit is contained in:
Morten Olsen
2025-09-12 10:59:19 +02:00
commit 25939b0141
13 changed files with 889 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM rhasspy/wyoming-piper
# Copy custom GLaDOS model directly to the data directory root
# Wyoming Piper looks for voices in the root of the data directory
COPY model/en_US_glados_medium.onnx /usr/share/piper-voices/en_US-glados-medium.onnx
COPY model/en_US_glados_medium.json /usr/share/piper-voices/en_US-glados-medium.onnx.json
# Set proper permissions
RUN chmod -R 755 /usr/share/piper-voices/
# Expose the Wyoming protocol port
EXPOSE 10200
# Use the default CMD from the base image
# The base image should handle running the Wyoming Piper server