Skip to content

Instantly share code, notes, and snippets.

@LaurentGoderre
Created April 8, 2016 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LaurentGoderre/fbf5f44e1310a127ae6638e1d7548188 to your computer and use it in GitHub Desktop.
Save LaurentGoderre/fbf5f44e1310a127ae6638e1d7548188 to your computer and use it in GitHub Desktop.
diff --git a/0.10/Dockerfile b/0.10/Dockerfile
index ff9b001..ac3f6f3 100644
--- a/0.10/Dockerfile
+++ b/0.10/Dockerfile
@@ -15,6 +15,7 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done
+ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 0.10.44
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
diff --git a/0.10/slim/Dockerfile b/0.10/slim/Dockerfile
index f3fd6b5..bc1f054 100644
--- a/0.10/slim/Dockerfile
+++ b/0.10/slim/Dockerfile
@@ -1,4 +1,4 @@
-FROM debian:jessie
+FROM buildpack-deps:jessie-curl
# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
@@ -15,9 +15,10 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done
+ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 0.10.44
-RUN buildDeps='curl ca-certificates xz-utils' \
+RUN buildDeps='xz-utils' \
&& set -x \
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
diff --git a/0.10/wheezy/Dockerfile b/0.10/wheezy/Dockerfile
index f50c3be..061e512 100644
--- a/0.10/wheezy/Dockerfile
+++ b/0.10/wheezy/Dockerfile
@@ -15,6 +15,7 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done
+ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 0.10.44
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
diff --git a/0.12/Dockerfile b/0.12/Dockerfile
index b668c69..3f75650 100644
--- a/0.12/Dockerfile
+++ b/0.12/Dockerfile
@@ -15,6 +15,7 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done
+ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 0.12.13
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
diff --git a/0.12/slim/Dockerfile b/0.12/slim/Dockerfile
index 60a4e42..e57dfd4 100644
--- a/0.12/slim/Dockerfile
+++ b/0.12/slim/Dockerfile
@@ -1,4 +1,4 @@
-FROM debian:jessie
+FROM buildpack-deps:jessie-curl
# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
@@ -15,9 +15,10 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done
+ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 0.12.13
-RUN buildDeps='curl ca-certificates xz-utils' \
+RUN buildDeps='xz-utils' \
&& set -x \
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
diff --git a/0.12/wheezy/Dockerfile b/0.12/wheezy/Dockerfile
index b8772a1..439a82c 100644
--- a/0.12/wheezy/Dockerfile
+++ b/0.12/wheezy/Dockerfile
@@ -15,6 +15,7 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done
+ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 0.12.13
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
diff --git a/5.10/Dockerfile b/5.10/Dockerfile
index 3d66347..f9089f2 100644
--- a/5.10/Dockerfile
+++ b/5.10/Dockerfile
@@ -16,7 +16,7 @@ RUN set -ex \
done
ENV NPM_CONFIG_LOGLEVEL info
-ENV NODE_VERSION 5.10.0
+ENV NODE_VERSION 5.10.1
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
diff --git a/5.10/onbuild/Dockerfile b/5.10/onbuild/Dockerfile
index 593a156..8e4819c 100644
--- a/5.10/onbuild/Dockerfile
+++ b/5.10/onbuild/Dockerfile
@@ -1,4 +1,4 @@
-FROM node:5.10.0
+FROM node:5.10.1
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
diff --git a/5.10/slim/Dockerfile b/5.10/slim/Dockerfile
index b247da2..ba1c936 100644
--- a/5.10/slim/Dockerfile
+++ b/5.10/slim/Dockerfile
@@ -16,7 +16,7 @@ RUN set -ex \
done
ENV NPM_CONFIG_LOGLEVEL info
-ENV NODE_VERSION 5.10.0
+ENV NODE_VERSION 5.10.1
RUN buildDeps='xz-utils' \
&& set -x \
diff --git a/5.10/wheezy/Dockerfile b/5.10/wheezy/Dockerfile
index 6477fe4..217ca03 100644
--- a/5.10/wheezy/Dockerfile
+++ b/5.10/wheezy/Dockerfile
@@ -16,7 +16,7 @@ RUN set -ex \
done
ENV NPM_CONFIG_LOGLEVEL info
-ENV NODE_VERSION 5.10.0
+ENV NODE_VERSION 5.10.1
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment