Mercurial > code > home > repos > homeauto
annotate service/wifi/Dockerfile @ 1683:437d7263b515
checkpoint service/frontDoorLock
author | drewp@bigasterisk.com |
---|---|
date | Mon, 27 Sep 2021 23:13:49 -0700 |
parents | f88ff1021ee0 |
children | 81aa0873b48d |
rev | line source |
---|---|
1679 | 1 FROM bang5:5000/base_x86 |
383 | 2 |
3 WORKDIR /opt | |
4 | |
5 RUN apt-get install -y libxml2-dev libxslt1-dev | |
6 | |
7 COPY requirements.txt ./ | |
564 | 8 RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt |
421 | 9 # not sure why this doesn't work from inside requirements.txt |
564 | 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' |
383 | 11 |
1679 | 12 COPY *.py *.n3 *.html *.js *.mustache ./ |
662
540dd68af9f2
start ts config files, but this doesn't share the streamed-graph code properly yet
drewp@bigasterisk.com
parents:
659
diff
changeset
|
13 COPY build/ ./build |
383 | 14 |
15 EXPOSE 9070 | |
16 | |
421 | 17 CMD [ "python3", "wifi.py" ] |