Mercurial > code > home > repos > homeauto
annotate service/bluetoothButtons/Dockerfile @ 1513:c829df2b0dd5
new graph output for browsers, with autorefresh
Ignore-this: e4ff4dbed311b238d90988a1891ef640
darcs-hash:ba19d0d8975104ec6a3580e50cf8b7ca7745abdc
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Mon, 03 Feb 2020 23:47:23 -0800 |
parents | afd19bf8b499 |
children |
rev | line source |
---|---|
1185 | 1 FROM bang6:5000/base_x86 |
2 | |
1188
afd19bf8b499
various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
1185
diff
changeset
|
3 WORKDIR /opt |
1185 | 4 |
5 COPY requirements.txt ./ | |
1188
afd19bf8b499
various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
1185
diff
changeset
|
6 RUN pip3 install -r requirements.txt |
1185 | 7 |
8 ADD https://projects.bigasterisk.com/rdfdb/more.tgz ./ | |
9 RUN tar xvzf more.tgz | |
10 | |
11 COPY *.py ./ | |
12 | |
13 EXPOSE 11012 | |
14 | |
1188
afd19bf8b499
various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
1185
diff
changeset
|
15 CMD [ "python3", "./bluetooth_buttons.py" ] |