Mercurial > code > home > repos > homeauto
annotate service/bluetoothButtons/Dockerfile @ 1699:411f5e013201 0.12.0
release 0.12.0
author | drewp@bigasterisk.com |
---|---|
date | Tue, 12 Oct 2021 20:18:59 -0700 |
parents | 8f5a16a55f64 |
children |
rev | line source |
---|---|
380 | 1 FROM bang6:5000/base_x86 |
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 | |
13 EXPOSE 11012 | |
14 | |
383
8f5a16a55f64
various docker setups and build fixes
drewp@bigasterisk.com
parents:
380
diff
changeset
|
15 CMD [ "python3", "./bluetooth_buttons.py" ] |