1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-04-13 11:40:41 +02:00
dockerfiles/node-red/arm/Dockerfile

30 lines
680 B
Docker
Raw Normal View History

2015-12-04 17:49:45 +08:00
#
2016-01-08 12:16:00 +08:00
# Dockerfile for node-red-arm
2015-12-04 17:49:45 +08:00
#
2016-07-08 03:28:46 +08:00
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
2015-12-04 17:49:45 +08:00
2016-01-08 14:26:58 +08:00
RUN set -xe \
2016-07-08 03:28:46 +08:00
&& apk add --no-cache bash \
2016-08-19 17:49:41 +08:00
curl \
2016-07-08 03:28:46 +08:00
build-base \
nodejs \
python \
python-dev \
2016-08-19 17:49:41 +08:00
sudo \
&& curl https://bootstrap.pypa.io/get-pip.py | python \
&& pip install rpi.gpio \
2016-07-08 03:28:46 +08:00
&& npm install -g node-red \
node-red-admin \
2015-12-04 17:49:45 +08:00
&& apk del build-base \
2015-12-04 17:56:19 +08:00
python-dev \
2016-07-08 03:28:46 +08:00
&& rm -rf /tmp/npm-*
2015-12-04 17:49:45 +08:00
2015-12-18 00:06:44 +08:00
WORKDIR /root/.node-red
2015-12-04 17:56:19 +08:00
VOLUME /root/.node-red
2016-07-08 03:28:46 +08:00
2015-12-04 17:56:19 +08:00
EXPOSE 1880
2015-12-04 17:49:45 +08:00
CMD ["node-red"]