view service/audioInputLevels/Dockerfile @ 1348:e681221ab8a3

release 0.4.0 Ignore-this: fa3be75cf8765569c6498f743858ad48 darcs-hash:9803849d98c7a18ed90df08f907749c1ee1d037d
author drewp <drewp@bigasterisk.com>
date Thu, 25 Apr 2019 23:01:26 -0700
parents afd19bf8b499
children
line wrap: on
line source

FROM bang6:5000/base_x86

WORKDIR /opt

RUN apt-get install --yes libpulse0 pulseaudio-utils
COPY requirements.txt ./
RUN pip install -r requirements.txt

COPY *.py req* ./

CMD [ "python", "./audioInputLevelsPulse.py", "--source", "alsa_input.pci-0000_00_1f.3.analog-stereo" ]