Mercurial > code > home > repos > homeauto
view service/frontDoorLock/Dockerfile @ 1455:1a7cd0cff3eb
rename store's graph uri
Ignore-this: dc2e863eb429456f9d642b53bbae1cc4
darcs-hash:a7cf4772cf49ddbea9dc04d903a597893ff25653
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Wed, 25 Sep 2019 17:33:32 -0700 |
parents | 5836e88a0287 |
children | 437d7263b515 |
line wrap: on
line source
FROM bang6:5000/base_x86 WORKDIR /opt 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 -U 'https://github.com/drewp/cyclone/archive/python3.zip?v3' COPY *.py *.html *.css *.js ./ EXPOSE 10011:10011 CMD [ "python3", "./front_door_lock.py" ]