Mercurial > code > home > repos > homeauto
view service/tinyScreen/Dockerfile @ 393:5fc79536885a
fix screen timing corruption, hopefully. add py client
Ignore-this: 53f42a30bbc5d9047658fef6ff79637c
author | drewp@bigasterisk.com |
---|---|
date | Sat, 19 Jan 2019 12:12:06 -0800 |
parents | c146fa2bc7d4 |
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" ]