view service/arduinoNode/Dockerfile @ 1530:f4e1493e9526

there's a plan Ignore-this: 994107ade471f5e66c4746996c9e5a11 darcs-hash:dd80cdf9badb6cc9fb22989a34ce555e663f63f0
author drewp <drewp@bigasterisk.com>
date Wed, 05 Feb 2020 17:12:18 -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" ]