From 1c46b710cbfff54fac0f45e68713b8b275f7f69f Mon Sep 17 00:00:00 2001 From: Jesse Rosenberger Date: Sat, 11 Mar 2017 13:41:52 +0200 Subject: [PATCH] Node 4.8.0 --- base/Dockerfile | 4 ++-- binbuild/Dockerfile | 2 +- circle.yml | 2 +- devbuild/Dockerfile | 2 +- onbuild/Dockerfile | 4 ++-- tests/run_tests.sh | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/base/Dockerfile b/base/Dockerfile index 0cb1a9f8..3d77421c 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -5,8 +5,8 @@ ENV METEORD_DIR /opt/meteord COPY scripts $METEORD_DIR ARG NODE_VERSION -ENV NODE_VERSION ${NODE_VERSION:-4.7.2} -ONBUILD ENV NODE_VERSION ${NODE_VERSION:-4.7.2} +ENV NODE_VERSION ${NODE_VERSION:-4.8.0} +ONBUILD ENV NODE_VERSION ${NODE_VERSION:-4.8.0} RUN bash $METEORD_DIR/lib/install_base.sh RUN bash $METEORD_DIR/lib/install_node.sh diff --git a/binbuild/Dockerfile b/binbuild/Dockerfile index 0f2e7f30..3c6f4e1a 100644 --- a/binbuild/Dockerfile +++ b/binbuild/Dockerfile @@ -2,7 +2,7 @@ FROM abernix/meteord:base MAINTAINER Jesse Rosenberger ARG NODE_VERSION -ENV NODE_VERSION ${NODE_VERSION:-4.7.2} +ENV NODE_VERSION ${NODE_VERSION:-4.8.0} COPY scripts/install_binbuild_tools.sh $METEORD_DIR/install_binbuild_tools.sh COPY scripts/rebuild_npm_modules.sh $METEORD_DIR/rebuild_npm_modules.sh diff --git a/circle.yml b/circle.yml index 3eade3cf..159eef7a 100644 --- a/circle.yml +++ b/circle.yml @@ -1,6 +1,6 @@ machine: node: - version: 4.7.2 + version: 4.8.0 services: - docker diff --git a/devbuild/Dockerfile b/devbuild/Dockerfile index 68cf215b..99081656 100644 --- a/devbuild/Dockerfile +++ b/devbuild/Dockerfile @@ -2,7 +2,7 @@ FROM abernix/meteord:base MAINTAINER Jesse Rosenberger ARG NODE_VERSION -ENV NODE_VERSION ${NODE_VERSION:-4.7.2} +ENV NODE_VERSION ${NODE_VERSION:-4.8.0} ONBUILD RUN bash $METEORD_DIR/lib/install_meteor.sh ONBUILD COPY ./ /app diff --git a/onbuild/Dockerfile b/onbuild/Dockerfile index de467ec6..c84f8f96 100644 --- a/onbuild/Dockerfile +++ b/onbuild/Dockerfile @@ -2,8 +2,8 @@ FROM abernix/meteord:base MAINTAINER MeteorHacks Pvt Ltd. ARG NODE_VERSION -ENV NODE_VERSION ${NODE_VERSION:-4.7.2} -ONBUILD ENV NODE_VERSION ${NODE_VERSION:-4.7.2} +ENV NODE_VERSION ${NODE_VERSION:-4.8.0} +ONBUILD ENV NODE_VERSION ${NODE_VERSION:-4.8.0} ONBUILD COPY ./ /app ONBUILD RUN bash $METEORD_DIR/lib/install_meteor.sh diff --git a/tests/run_tests.sh b/tests/run_tests.sh index 24305248..6ad919ad 100644 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -2,7 +2,7 @@ set -e set -x -export NODE_VERSION=${NODE_VERSION:-4.7.2} +export NODE_VERSION=${NODE_VERSION:-4.8.0} bash ./build_it.sh