annotate service/tinyScreen/Dockerfile.pi @ 1705:250f4c27d56f

less logging
author drewp@bigasterisk.com
date Sat, 23 Oct 2021 13:21:06 -0700
parents c146fa2bc7d4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
388
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
1 FROM bang6:5000/base_pi
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
2
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
3 WORKDIR /opt
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
4
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
5 COPY requirements.txt ./
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
6 RUN pip install -r requirements.txt
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
7
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
8 COPY font ./font
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
9 COPY anim ./anim
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
10 COPY *.py *.html ./
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
11
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
12 EXPOSE 11013
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
13
c146fa2bc7d4 tinyscreen can flip images and render news
drewp@bigasterisk.com
parents:
diff changeset
14 CMD [ "python", "./tiny_screen.py" ]