comparison service/playSound/Dockerfile.pi @ 664:28cc07978a71

start rewrite for playSound Ignore-this: a4d4ccceea8ef0ba996ca2d81bf634c6
author drewp@bigasterisk.com
date Thu, 19 Dec 2019 16:45:40 -0800
parents service/speechMusic/Dockerfile.pi@ccde9f432e4e
children
comparison
equal deleted inserted replaced
663:25b418e2659e 664:28cc07978a71
1 FROM bang6:5000/base_pi
2
3 WORKDIR /opt
4
5 RUN apt-get update
6 RUN apt-get install --yes libopenal1 libogg0 pulseaudio-utils python-pygame festival sox
7 COPY requirements.txt ./
8 RUN pip install -r requirements.txt
9
10 COPY *.py req* *.jade ./
11 COPY pulse-client.conf /etc/pulse/client.conf
12
13 ENV PULSE_SERVER /tmp/pulseaudio
14 EXPOSE 9049
15 RUN mkdir /sounds
16
17 CMD [ "python", "./playSound.py" ]