Browse Source

Add support for nodejs5

pull/192/head
Jae Kwon 9 years ago
parent
commit
6c9428a3c9
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      DOCKER/Dockerfile

+ 7
- 0
DOCKER/Dockerfile View File

@ -25,6 +25,13 @@ RUN apt-get update && \
git && \
rm -rf /var/lib/apt/lists/*
# grab deps (node)
RUN curl -sL https://deb.nodesource.com/setup_5.x | bash -
RUN apt-get update && \
apt-get install -y --no-install-recommends \
nodejs && \
rm -rf /var/lib/apt/lists/*
# copy run.sh
COPY ./run.sh $DATA_ROOT/run.sh
RUN chmod +x $DATA_ROOT/run.sh


Loading…
Cancel
Save