diff --git a/Dockerfiles/nodejs4.3 b/Dockerfiles/nodejs4.3 index 7baf32b..3d20432 100644 --- a/Dockerfiles/nodejs4.3 +++ b/Dockerfiles/nodejs4.3 @@ -1,6 +1,6 @@ FROM amazonlinux -RUN yum install -y wget zip +RUN yum install -y wget zip git RUN curl -sL https://nodejs.org/dist/v4.3.2/node-v4.3.2-linux-x64.tar.gz | tar zxC /usr/local --strip-components=1 RUN rm -rf /usr/local/lib/node_modules/npm && \ mkdir /usr/local/lib/node_modules/npm && \ diff --git a/Dockerfiles/nodejs6.x b/Dockerfiles/nodejs6.x index eefe908..423fc36 100644 --- a/Dockerfiles/nodejs6.x +++ b/Dockerfiles/nodejs6.x @@ -1,6 +1,6 @@ FROM amazonlinux -RUN yum install -y wget zip +RUN yum install -y wget zip git RUN curl -sL https://nodejs.org/dist/v6.11.1/node-v6.11.1-linux-x64.tar.gz | tar zxC /usr/local --strip-components=1 RUN rm -rf /usr/local/lib/node_modules/npm && \ mkdir /usr/local/lib/node_modules/npm && \