Mercurial > code > home > repos > homeauto
comparison 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 |
comparison
equal
deleted
inserted
replaced
1366:5836e88a0287 | 1367:b287950fbcf4 |
---|---|
3 WORKDIR /opt | 3 WORKDIR /opt |
4 | 4 |
5 RUN apt-get install -y libxml2-dev libxslt1-dev | 5 RUN apt-get install -y libxml2-dev libxslt1-dev |
6 | 6 |
7 COPY requirements.txt ./ | 7 COPY requirements.txt ./ |
8 RUN pip3 install -r requirements.txt | 8 RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt |
9 # not sure why this doesn't work from inside 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' | 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' |
11 | 11 |
12 COPY *.py *.n3 *.html ./ | 12 COPY *.py *.n3 *.html ./ |
13 | 13 |
14 EXPOSE 9070 | 14 EXPOSE 9070 |
15 | 15 |