Mercurial > code > home > repos > homeauto
view service/wifi/Dockerfile @ 1367:b287950fbcf4
update build on service/wifi
Ignore-this: 4d68aad5f218c2ec114155290c4a4bf8
darcs-hash:ad72adffacf2790bf66312cacdfd6c790ceb7f4a
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Fri, 03 May 2019 18:54:05 -0700 |
parents | 7de8f0cd3392 |
children | 517cbb905d4c |
line wrap: on
line source
FROM bang6: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 ./ EXPOSE 9070 CMD [ "python3", "wifi.py" ]