Mercurial > code > home > repos > homeauto
view service/xidle/Dockerfile.pi @ 1491:6cd9341f0a28
xidle rewrite for docker, py3
Ignore-this: a866446f3f42069092dc40b48f12d46b
darcs-hash:67026da0e635b31e2cec59037397b99b0ce7c4ac
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Wed, 29 Jan 2020 01:02:06 -0800 |
parents | 03e132cd351b |
children |
line wrap: on
line source
FROM bang6:5000/base_pi RUN apt-get install --yes libxss-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 -U 'https://github.com/drewp/cyclone/archive/python3.zip?v3' COPY *.py ./ EXPOSE 9107 CMD [ "python3", "./xidle.py" ]