Mercurial > code > home > repos > homeauto
annotate service/bluetoothButtons/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 | f78438913bf7 |
children |
rev | line source |
---|---|
380 | 1 FROM bang6:5000/base_pi |
2 | |
383
8f5a16a55f64
various docker setups and build fixes
drewp@bigasterisk.com
parents:
380
diff
changeset
|
3 WORKDIR /opt |
380 | 4 |
5 COPY requirements.txt ./ | |
383
8f5a16a55f64
various docker setups and build fixes
drewp@bigasterisk.com
parents:
380
diff
changeset
|
6 RUN pip3 install -r requirements.txt |
380 | 7 |
8 ADD https://projects.bigasterisk.com/rdfdb/more.tgz ./ | |
9 RUN tar xvzf more.tgz | |
10 | |
11 COPY *.py ./ | |
12 | |
383
8f5a16a55f64
various docker setups and build fixes
drewp@bigasterisk.com
parents:
380
diff
changeset
|
13 EXPOSE 11012 |
380 | 14 |
383
8f5a16a55f64
various docker setups and build fixes
drewp@bigasterisk.com
parents:
380
diff
changeset
|
15 CMD [ "python3", "./bluetooth_buttons.py" ] |