1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-10 04:19:24 +02:00
dockerfiles/node-red/arm/Dockerfile

26 lines
524 B
Docker
Raw Normal View History

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