2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2026-01-02 19:17:33 +01:00

rename nodered to node-red

This commit is contained in:
kev
2016-01-08 12:16:00 +08:00
parent 353ff5530c
commit 3f0f4d5597
6 changed files with 14 additions and 14 deletions

22
node-red/Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
#
# Dockerfile for node-red
#
FROM alpine:edge
MAINTAINER kev <noreply@datageek.info>
RUN apk add -U bash \
build-base \
nodejs \
python \
python-dev \
&& npm install -g node-red node-red-admin \
&& apk del build-base \
python-dev \
&& rm -rf /var/cache/apk/*
WORKDIR /root/.node-red
VOLUME /root/.node-red
EXPOSE 1880
CMD ["node-red"]