view service/bluetoothButtons/Dockerfile.pi @ 799:e0e623c01a69

ts build is part of docker now; new web debug console
author drewp@bigasterisk.com
date Fri, 01 Jan 2021 14:17:12 -0800
parents 8f5a16a55f64
children
line wrap: on
line source

FROM bang6:5000/base_pi

WORKDIR /opt

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

ADD https://projects.bigasterisk.com/rdfdb/more.tgz ./
RUN tar xvzf more.tgz

COPY *.py ./

EXPOSE 11012

CMD [ "python3", "./bluetooth_buttons.py" ]