1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-02-03 13:21:35 +02:00
dockerfiles/node-red/arm/Dockerfile
2019-10-01 15:51:17 +08:00

33 lines
901 B
Docker

#
# Dockerfile for node-red-arm
#
FROM arm32v7/alpine:3
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apk add --no-cache bash \
build-base \
ca-certificates \
curl \
nodejs \
nodejs-npm \
python3 \
python3-dev \
&& ln -sf /usr/bin/python3 /usr/bin/python \
&& pip3 install --no-cache-dir rpi.gpio \
&& npm install -g --unsafe-perm node-red \
node-red-admin \
node-red-dashboard \
&& mkdir -p /usr/share/doc/python-rpi.gpio \
&& apk del build-base \
python3-dev \
&& rm -rf /tmp/npm-*
WORKDIR /data
VOLUME /data
EXPOSE 1880
CMD ["node-red", "--userDir", "/data", "--flowFile", "flows.json"]