mirror of
https://github.com/morten-olsen/glados-voice.git
synced 2026-02-07 22:46:23 +01:00
15 lines
556 B
Docker
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 |