Mercurial > code > home > repos > homeauto
view service/tinyScreen/Dockerfile @ 1745:d90cb7c06f15
try to crash if mqtt doesn't connect
author | drewp@bigasterisk.com |
---|---|
date | Thu, 09 Nov 2023 17:21:59 -0800 |
parents | 5fc79536885a |
children |
line wrap: on
line source
FROM bang6:5000/base_x86 WORKDIR /opt COPY requirements.txt ./ RUN pip install -r requirements.txt RUN pip install pygame COPY font ./font COPY anim ./anim COPY *.py *.html ./ EXPOSE 11013 CMD [ "python", "./tiny_screen.py" ]