diff service/bluetoothButtons/Dockerfile @ 380:f78438913bf7

start bluetoothButtons svc Ignore-this: 9aba5a873e79b48cf70ae7ba0fb8c17c
author drewp@bigasterisk.com
date Tue, 18 Dec 2018 23:56:12 -0800
parents
children 8f5a16a55f64
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/service/bluetoothButtons/Dockerfile	Tue Dec 18 23:56:12 2018 -0800
@@ -0,0 +1,15 @@
+FROM bang6:5000/base_x86
+
+
+
+COPY requirements.txt ./
+RUN pip install -r requirements.txt
+
+ADD https://projects.bigasterisk.com/rdfdb/more.tgz ./
+RUN tar xvzf more.tgz
+
+COPY *.py ./
+
+EXPOSE 11012
+
+CMD [ "python", "./bluetooth_buttons.py" ]