Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 0.10/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
FROM buildpack-deps:jessie

ENV NODE_VERSION 0.10.44

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -17,6 +15,8 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NODE_VERSION 0.10.44

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" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Expand Down
4 changes: 2 additions & 2 deletions 0.10/slim/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
FROM buildpack-deps:jessie-curl

ENV NODE_VERSION 0.10.44

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -17,6 +15,8 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NODE_VERSION 0.10.44

RUN buildDeps='xz-utils' \
&& set -x \
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
Expand Down
4 changes: 2 additions & 2 deletions 0.10/wheezy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
FROM buildpack-deps:wheezy

ENV NODE_VERSION 0.10.44

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -17,6 +15,8 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NODE_VERSION 0.10.44

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" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Expand Down
4 changes: 2 additions & 2 deletions 0.12/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
FROM buildpack-deps:jessie

ENV NODE_VERSION 0.12.13

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -17,6 +15,8 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NODE_VERSION 0.12.13

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" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Expand Down
4 changes: 2 additions & 2 deletions 0.12/slim/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
FROM buildpack-deps:jessie-curl

ENV NODE_VERSION 0.12.13

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -17,6 +15,8 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NODE_VERSION 0.12.13

RUN buildDeps='xz-utils' \
&& set -x \
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
Expand Down
4 changes: 2 additions & 2 deletions 0.12/wheezy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
FROM buildpack-deps:wheezy

ENV NODE_VERSION 0.12.13

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -17,6 +15,8 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NODE_VERSION 0.12.13

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" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Expand Down
6 changes: 3 additions & 3 deletions 4.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
FROM buildpack-deps:jessie

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 4.4.3

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -18,6 +15,9 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 4.4.3

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" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Expand Down
6 changes: 3 additions & 3 deletions 4.4/slim/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
FROM buildpack-deps:jessie-curl

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 4.4.3

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -18,6 +15,9 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 4.4.3

RUN buildDeps='xz-utils' \
&& set -x \
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
Expand Down
6 changes: 3 additions & 3 deletions 4.4/wheezy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
FROM buildpack-deps:wheezy

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 4.4.3

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -18,6 +15,9 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 4.4.3

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" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Expand Down
6 changes: 3 additions & 3 deletions 5.11/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
FROM buildpack-deps:jessie

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 5.11.0

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -18,6 +15,9 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 5.11.0

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" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Expand Down
6 changes: 3 additions & 3 deletions 5.11/slim/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
FROM buildpack-deps:jessie-curl

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 5.11.0

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -18,6 +15,9 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 5.11.0

RUN buildDeps='xz-utils' \
&& set -x \
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
Expand Down
6 changes: 3 additions & 3 deletions 5.11/wheezy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
FROM buildpack-deps:wheezy

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 5.11.0

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -18,6 +15,9 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 5.11.0

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" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile-slim.template
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
FROM buildpack-deps:jessie-curl

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 0.0.0

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -18,6 +15,9 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 0.0.0

RUN buildDeps='xz-utils' \
&& set -x \
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile-wheezy.template
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
FROM buildpack-deps:wheezy

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 0.0.0

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -18,6 +15,9 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 0.0.0

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" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.template
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
FROM buildpack-deps:jessie

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 0.0.0

# gpg keys listed at https://github.com/nodejs/node
RUN set -ex \
&& for key in \
Expand All @@ -18,6 +15,9 @@ RUN set -ex \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done

ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 0.0.0

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" \
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Expand Down