Updated Design: Runnable Project (markdown)

Dave Conway-Jones 2018-03-24 15:00:53 +00:00
parent d67dcb69b2
commit 7cae451e4d
1 changed files with 4 additions and 2 deletions

@ -45,8 +45,9 @@ We should also have an example Dockerfile that can be used to build and run a pr
FROM resin/%%RESIN_MACHINE_NAME%%-node:8-slim
# Uncomment the next three lines if you want GPIO for Pi
#RUN apt-get update && apt-get install -yq \
# build-essential && \
# rpi.gpio && \
# apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app
@ -69,4 +70,5 @@ A really minimal Dockerfile to build an image (but not run) could be as simple a
```FROM node:8-onbuild
VOLUME /root/.node-red
EXPOSE 1880```
EXPOSE 1880
```