Mercurial > code > home > repos > homeauto
annotate service/wifi/Dockerfile @ 1226:7de8f0cd3392
very big rewrite. py3; orbi-only for now; n3 config file; delete or move out dead code
Ignore-this: bfecea6f4990d34b36cc6d97cc6c6fa2
darcs-hash:79a3d55bfae5776b2374faa2020b6e27f17eb390
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Sat, 30 Mar 2019 23:38:47 -0700 |
parents | e1202af42d4d |
children | b287950fbcf4 |
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 ./ | |
1224 | 8 RUN pip3 install -r requirements.txt |
9 # not sure why this doesn't work from inside requirements.txt | |
10 RUN pip3 install -U 'https://github.com/drewp/cyclone/archive/python3.zip?v2' | |
1223 | 11 |
1226
7de8f0cd3392
very big rewrite. py3; orbi-only for now; n3 config file; delete or move out dead code
drewp <drewp@bigasterisk.com>
parents:
1224
diff
changeset
|
12 COPY *.py *.n3 *.html ./ |
1223 | 13 |
14 EXPOSE 9070 | |
15 | |
1224 | 16 CMD [ "python3", "wifi.py" ] |