Mercurial > code > home > repos > homeauto
annotate service/arduinoNode/Dockerfile @ 732:fdddbdaf07b5
more service renaming; start a lot more serv.n3 job files
Ignore-this: 635aaefc7bd2fa5558eefb8b3fc9ec75
author | drewp@bigasterisk.com |
---|---|
date | Thu, 06 Feb 2020 16:36:35 -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" ] |