Mercurial > code > home > repos > homeauto
view service/wifi/Dockerfile @ 1694:73abfd4cf5d0
new html log and other refactoring as i work on the advanceTheStack problems
https://bigasterisk.com/post/inference/2021-09-27_11-11.png
author | drewp@bigasterisk.com |
---|---|
date | Mon, 27 Sep 2021 11:22:09 -0700 |
parents | f88ff1021ee0 |
children | 81aa0873b48d |
line wrap: on
line source
FROM bang5:5000/base_x86 WORKDIR /opt RUN apt-get install -y libxml2-dev libxslt1-dev COPY requirements.txt ./ RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt # not sure why this doesn't work from inside requirements.txt 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' COPY *.py *.n3 *.html *.js *.mustache ./ COPY build/ ./build EXPOSE 9070 CMD [ "python3", "wifi.py" ]