mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
33 lines
927 B
Docker
33 lines
927 B
Docker
#
|
|
# Dockerfile for node-red-arm
|
|
#
|
|
|
|
FROM easypi/alpine-arm
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN set -xe \
|
|
&& apk add --no-cache 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 \
|
|
&& sed -i '1s/bash/sh/' /usr/lib/node_modules/node-red/nodes/core/hardware/nrgpio \
|
|
&& mkdir -p /usr/share/doc/python-rpi.gpio \
|
|
&& apk del build-base \
|
|
python3-dev \
|
|
&& rm -rf /tmp/npm-*
|
|
|
|
WORKDIR /root/.node-red
|
|
VOLUME /root/.node-red
|
|
|
|
EXPOSE 1880
|
|
|
|
CMD ["node-red"]
|