diff service/dpms/Dockerfile.pi @ 383:8f5a16a55f64

various docker setups and build fixes Ignore-this: adb559337fa1bd058818d1fc99d80ac1
author drewp@bigasterisk.com
date Fri, 28 Dec 2018 02:13:15 -0800
parents
children d6996175ea78
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/service/dpms/Dockerfile.pi	Fri Dec 28 02:13:15 2018 -0800
@@ -0,0 +1,14 @@
+FROM bang6:5000/base_pi
+RUN apt-get install -y x11-xserver-utils
+
+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 9095
+
+CMD [ "python", "./dpms_service.py" ]