From 99edac82d0ef453fd792023b63aa8f019b4f6725 Mon Sep 17 00:00:00 2001 From: Benjamin Tran Dinh Date: Thu, 21 Dec 2017 18:29:15 +0100 Subject: [PATCH] install git for github-based dependencies #33 --- Dockerfiles/nodejs4.3 | 2 +- Dockerfiles/nodejs6.x | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 && \