Files
glados-voice/Dockerfile
Morten Olsen 25939b0141 init
2025-09-12 10:59:19 +02:00

15 lines
556 B
Docker

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