Mercurial > code > home > repos > homeauto
annotate service/arduinoNode/Dockerfile @ 689:e3eceee54937
introduce capnp, more build, some demos
Ignore-this: 29801e9e9f8a85fd0d822207c6eacce1
author | drewp@bigasterisk.com |
---|---|
date | Thu, 23 Jan 2020 21:00:47 -0800 |
parents | 5c750342604d |
children |
rev | line source |
---|---|
383
8f5a16a55f64
various docker setups and build fixes
drewp@bigasterisk.com
parents:
343
diff
changeset
|
1 FROM bang6:5000/base_x86 |
336 | 2 |
3 WORKDIR /opt | |
4 | |
620 | 5 RUN apt-get install -y arduino-mk indent |
6 | |
336 | 7 COPY requirements.txt ./ |
620 | 8 RUN pip install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt |
336 | 9 |
383
8f5a16a55f64
various docker setups and build fixes
drewp@bigasterisk.com
parents:
343
diff
changeset
|
10 COPY arduino-libraries/ ./arduino-libraries/ |
336 | 11 COPY *.py ./ |
456
12f9f1838fb5
arduinoNode: build updates, stats support, etc
drewp@bigasterisk.com
parents:
383
diff
changeset
|
12 COPY config/ ./config/ |
336 | 13 |
14 EXPOSE 9059 | |
15 | |
16 CMD [ "python", "./arduinoNode.py" ] |