view service/tinyScreen/Dockerfile.pi @ 1718:82213d91471c

new cam component with http server
author drewp@bigasterisk.com
date Sun, 07 Aug 2022 04:43:47 -0700
parents c146fa2bc7d4
children
line wrap: on
line source

FROM bang6:5000/base_pi

WORKDIR /opt

COPY requirements.txt ./
RUN pip install -r requirements.txt

COPY font ./font
COPY anim ./anim
COPY *.py *.html ./

EXPOSE 11013

CMD [ "python", "./tiny_screen.py" ]