Mercurial > code > home > repos > homeauto
annotate service/bluetoothButtons/Dockerfile @ 1458:be5fc8791c4d
dep on influxdb
Ignore-this: a89f9f27d849d29e6b11234d6556c0b1
darcs-hash:797ee4baafebe0a5bd13d29d715c5869a091afdb
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Wed, 25 Sep 2019 17:56:15 -0700 |
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" ] |