Mercurial > code > home > repos > homeauto
annotate service/arduinoNode/Dockerfile @ 1718:82213d91471c
new cam component with http server
author | drewp@bigasterisk.com |
---|---|
date | Sun, 07 Aug 2022 04:43:47 -0700 |
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" ] |