File tree Expand file tree Collapse file tree 15 files changed +39
-39
lines changed Expand file tree Collapse file tree 15 files changed +39
-39
lines changed Original file line number Diff line number Diff line change 11FROM buildpack-deps:jessie
22
3+ ENV NODE_VERSION 0.10.44
4+
35# gpg keys listed at https://github.com/nodejs/node
46RUN set -ex \
57 && for key in \
@@ -15,8 +17,6 @@ RUN set -ex \
1517 gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
1618 done
1719
18- ENV NODE_VERSION 0.10.44
19-
2020RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2121 && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
2222 && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Original file line number Diff line number Diff line change 11FROM buildpack-deps:jessie-curl
22
3+ ENV NODE_VERSION 0.10.44
4+
35# gpg keys listed at https://github.com/nodejs/node
46RUN set -ex \
57 && for key in \
@@ -15,8 +17,6 @@ RUN set -ex \
1517 gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
1618 done
1719
18- ENV NODE_VERSION 0.10.44
19-
2020RUN buildDeps='xz-utils' \
2121 && set -x \
2222 && apt-get update && apt-get install -y $buildDeps --no-install-recommends \
Original file line number Diff line number Diff line change 11FROM buildpack-deps:wheezy
22
3+ ENV NODE_VERSION 0.10.44
4+
35# gpg keys listed at https://github.com/nodejs/node
46RUN set -ex \
57 && for key in \
@@ -15,8 +17,6 @@ RUN set -ex \
1517 gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
1618 done
1719
18- ENV NODE_VERSION 0.10.44
19-
2020RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2121 && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
2222 && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Original file line number Diff line number Diff line change 11FROM buildpack-deps:jessie
22
3+ ENV NODE_VERSION 0.12.13
4+
35# gpg keys listed at https://github.com/nodejs/node
46RUN set -ex \
57 && for key in \
@@ -15,8 +17,6 @@ RUN set -ex \
1517 gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
1618 done
1719
18- ENV NODE_VERSION 0.12.13
19-
2020RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2121 && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
2222 && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Original file line number Diff line number Diff line change 11FROM buildpack-deps:jessie-curl
22
3+ ENV NODE_VERSION 0.12.13
4+
35# gpg keys listed at https://github.com/nodejs/node
46RUN set -ex \
57 && for key in \
@@ -15,8 +17,6 @@ RUN set -ex \
1517 gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
1618 done
1719
18- ENV NODE_VERSION 0.12.13
19-
2020RUN buildDeps='xz-utils' \
2121 && set -x \
2222 && apt-get update && apt-get install -y $buildDeps --no-install-recommends \
Original file line number Diff line number Diff line change 11FROM buildpack-deps:wheezy
22
3+ ENV NODE_VERSION 0.12.13
4+
35# gpg keys listed at https://github.com/nodejs/node
46RUN set -ex \
57 && for key in \
@@ -15,8 +17,6 @@ RUN set -ex \
1517 gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
1618 done
1719
18- ENV NODE_VERSION 0.12.13
19-
2020RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2121 && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
2222 && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Original file line number Diff line number Diff line change 11FROM buildpack-deps:jessie
22
3+ ENV NPM_CONFIG_LOGLEVEL info
4+ ENV NODE_VERSION 4.4.3
5+
36# gpg keys listed at https://github.com/nodejs/node
47RUN set -ex \
58 && for key in \
@@ -15,9 +18,6 @@ RUN set -ex \
1518 gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
1619 done
1720
18- ENV NPM_CONFIG_LOGLEVEL info
19- ENV NODE_VERSION 4.4.3
20-
2121RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2222 && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
2323 && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Original file line number Diff line number Diff line change 11FROM buildpack-deps:jessie-curl
22
3+ ENV NPM_CONFIG_LOGLEVEL info
4+ ENV NODE_VERSION 4.4.3
5+
36# gpg keys listed at https://github.com/nodejs/node
47RUN set -ex \
58 && for key in \
@@ -15,9 +18,6 @@ RUN set -ex \
1518 gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
1619 done
1720
18- ENV NPM_CONFIG_LOGLEVEL info
19- ENV NODE_VERSION 4.4.3
20-
2121RUN buildDeps='xz-utils' \
2222 && set -x \
2323 && apt-get update && apt-get install -y $buildDeps --no-install-recommends \
Original file line number Diff line number Diff line change 11FROM buildpack-deps:wheezy
22
3+ ENV NPM_CONFIG_LOGLEVEL info
4+ ENV NODE_VERSION 4.4.3
5+
36# gpg keys listed at https://github.com/nodejs/node
47RUN set -ex \
58 && for key in \
@@ -15,9 +18,6 @@ RUN set -ex \
1518 gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
1619 done
1720
18- ENV NPM_CONFIG_LOGLEVEL info
19- ENV NODE_VERSION 4.4.3
20-
2121RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2222 && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
2323 && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
Original file line number Diff line number Diff line change 11FROM buildpack-deps:jessie
22
3+ ENV NPM_CONFIG_LOGLEVEL info
4+ ENV NODE_VERSION 5.11.0
5+
36# gpg keys listed at https://github.com/nodejs/node
47RUN set -ex \
58 && for key in \
@@ -15,9 +18,6 @@ RUN set -ex \
1518 gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key" ; \
1619 done
1720
18- ENV NPM_CONFIG_LOGLEVEL info
19- ENV NODE_VERSION 5.11.0
20-
2121RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2222 && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
2323 && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
You can’t perform that action at this time.
0 commit comments