diff service/audioInputLevels/Dockerfile @ 1160:6a127bf2b19b

docker setup for audio_input_levels Ignore-this: d0a631dcb9c2567834998547f3b192bc darcs-hash:a76dbe8d4fb88a3e379c87f4d656be225fe72645
author drewp <drewp@bigasterisk.com>
date Wed, 05 Sep 2018 01:45:45 -0700
parents
children 8f5a16a55f64
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/service/audioInputLevels/Dockerfile	Wed Sep 05 01:45:45 2018 -0700
@@ -0,0 +1,11 @@
+FROM bang6:5000/base_x86
+
+WORKDIR /opt
+
+RUN apt-get install --yes libpulse0
+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" ]