Mercurial > code > home > repos > homeauto
view service/frontDoorLock/Dockerfile @ 1414:1a277dba4cdc
oneShot can send to a dev instance
Ignore-this: 37dfe0f67c01c221b861d2b3e3900051
darcs-hash:85955653cb2158901ccdc4bd204c78a2b0cf54c2
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Wed, 24 Jul 2019 01:03:21 -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" ]