mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:50 +02:00
41 lines
893 B
Docker
41 lines
893 B
Docker
#
|
|
# Dockerfile for node-red
|
|
#
|
|
|
|
FROM 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 \
|
|
node-red-node-email \
|
|
node-red-node-feedparser \
|
|
node-red-node-pi-gpio \
|
|
node-red-node-sentiment \
|
|
node-red-node-twitter \
|
|
&& 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"]
|