Mercurial > code > home > repos > homeauto
comparison service/tinyScreen/Dockerfile @ 388:c146fa2bc7d4
tinyscreen can flip images and render news
Ignore-this: 72c89530e71d4c6f2550bb4deeccd807
author | drewp@bigasterisk.com |
---|---|
date | Wed, 02 Jan 2019 18:40:16 -0800 |
parents | |
children | 5fc79536885a |
comparison
equal
deleted
inserted
replaced
387:486d5d6c34e0 | 388:c146fa2bc7d4 |
---|---|
1 FROM bang6:5000/base_x86 | |
2 | |
3 WORKDIR /opt | |
4 | |
5 COPY requirements.txt ./ | |
6 RUN pip install -r requirements.txt | |
7 | |
8 COPY font ./font | |
9 COPY anim ./anim | |
10 COPY *.py *.html ./ | |
11 | |
12 EXPOSE 11013 | |
13 | |
14 CMD [ "python", "./tiny_screen.py" ] |