Mercurial > code > home > repos > homeauto
comparison service/bluetoothButtons/Dockerfile.pi @ 380:f78438913bf7
start bluetoothButtons svc
Ignore-this: 9aba5a873e79b48cf70ae7ba0fb8c17c
author | drewp@bigasterisk.com |
---|---|
date | Tue, 18 Dec 2018 23:56:12 -0800 |
parents | |
children | 8f5a16a55f64 |
comparison
equal
deleted
inserted
replaced
379:67cebf7a14de | 380:f78438913bf7 |
---|---|
1 FROM bang6:5000/base_pi | |
2 | |
3 RUN apt-get install --yes libxss-dev | |
4 | |
5 COPY requirements.txt ./ | |
6 RUN pip install -r requirements.txt | |
7 | |
8 ADD https://projects.bigasterisk.com/rdfdb/more.tgz ./ | |
9 RUN tar xvzf more.tgz | |
10 | |
11 COPY *.py ./ | |
12 | |
13 EXPOSE 9107 | |
14 | |
15 CMD [ "python", "./bluetooth_buttons.py" ] |