view service/bluetoothButtons/Dockerfile.pi @ 383:8f5a16a55f64

various docker setups and build fixes Ignore-this: adb559337fa1bd058818d1fc99d80ac1
author drewp@bigasterisk.com
date Fri, 28 Dec 2018 02:13:15 -0800
parents f78438913bf7
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" ]