view service/arduinoNode/Dockerfile @ 1514:78ee4d27ea87

release 0.11.0 Ignore-this: 58e616ca09c022d0a43e4f08e21ba6ab darcs-hash:8d78e75db3e8cd37c0b0227edc99ef6da7eaa49d
author drewp <drewp@bigasterisk.com>
date Mon, 03 Feb 2020 23:47:25 -0800
parents ba56263fe3b2
children
line wrap: on
line source

FROM bang6:5000/base_x86

WORKDIR /opt

RUN apt-get install -y arduino-mk indent

COPY requirements.txt ./
RUN pip install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt

COPY arduino-libraries/ ./arduino-libraries/
COPY *.py ./
COPY config/ ./config/

EXPOSE 9059

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