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