From 6c9428a3c9e3b944ce9c0a0ec67490d112c381ba Mon Sep 17 00:00:00 2001 From: Jae Kwon Date: Thu, 4 Feb 2016 20:27:35 -0800 Subject: [PATCH] Add support for nodejs5 --- DOCKER/Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/DOCKER/Dockerfile b/DOCKER/Dockerfile index ba918d010..aaf6da600 100644 --- a/DOCKER/Dockerfile +++ b/DOCKER/Dockerfile @@ -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