Mercurial > code > home > repos > homeauto
annotate service/wifi/Dockerfile @ 1462:2b29f14eb6bd
try new graph+view widget
Ignore-this: d5f9c5dc52f04324368716ba2f604fdb
darcs-hash:44e85a5c075ef73c34a58deaa3a3c1e8390dae52
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Sun, 24 Nov 2019 00:01:00 -0800 |
parents | 517cbb905d4c |
children | 32d134dbfb1e |
rev | line source |
---|---|
1223 | 1 FROM bang6:5000/base_x86 |
2 | |
3 WORKDIR /opt | |
4 | |
5 RUN apt-get install -y libxml2-dev libxslt1-dev | |
6 | |
7 COPY requirements.txt ./ | |
1367
b287950fbcf4
update build on service/wifi
drewp <drewp@bigasterisk.com>
parents:
1226
diff
changeset
|
8 RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt |
1224 | 9 # not sure why this doesn't work from inside requirements.txt |
1367
b287950fbcf4
update build on service/wifi
drewp <drewp@bigasterisk.com>
parents:
1226
diff
changeset
|
10 RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -U 'https://github.com/drewp/cyclone/archive/python3.zip?v2' |
1223 | 11 |
1461
517cbb905d4c
remote suspend, wifi group arg
drewp <drewp@bigasterisk.com>
parents:
1367
diff
changeset
|
12 COPY *.py *.n3 *.html *.js ./ |
1223 | 13 |
14 EXPOSE 9070 | |
15 | |
1224 | 16 CMD [ "python3", "wifi.py" ] |