view service/tinyScreen/Dockerfile @ 1581:137ba2d6d016 0.5.0

release 0.5.0
author drewp@bigasterisk.com
date Sun, 29 Aug 2021 13:36:08 -0700
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" ]