view service/speechMusic/Dockerfile.pi @ 453:9fd92202c886

WIP updating to read sounds from http Ignore-this: 9a7aa4cdd539ed1ace268f42ad76021a
author drewp@bigasterisk.com
date Fri, 19 Apr 2019 11:57:51 -0700
parents b3959142d7d8
children ccde9f432e4e
line wrap: on
line source

FROM bang6:5000/base_pi

WORKDIR /opt

RUN apt-get update
RUN apt-get install --yes libopenal1 libogg0 pulseaudio-utils python-pygame festival sox
COPY requirements.txt ./
RUN pip install -r requirements.txt

COPY sound sound
COPY *.py req* *.jade ./
COPY pulse-client.conf /etc/pulse/client.conf

ENV PULSE_SERVER /tmp/pulseaudio
EXPOSE 9049

CMD [ "python", "./speechMusic.py" ]