Skip to content

Commit

Permalink
Node 4.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abernix committed Mar 11, 2017
1 parent 1d90475 commit 1c46b71
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion binbuild/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
machine:
node:
version: 4.7.2
version: 4.8.0
services:
- docker

Expand Down
2 changes: 1 addition & 1 deletion devbuild/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions onbuild/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 1c46b71

Please sign in to comment.