File tree Expand file tree Collapse file tree 12 files changed +36
-36
lines changed Expand file tree Collapse file tree 12 files changed +36
-36
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ ENV NPM_CONFIG_LOGLEVEL info
24
24
ENV NODE_VERSION 4.8.3
25
25
26
26
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
27
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
27
+ && curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
28
28
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
29
29
&& grep " node-v$NODE_VERSION-linux-x64.tar.xz\$ " SHASUMS256.txt | sha256sum -c - \
30
30
&& tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \
@@ -41,8 +41,8 @@ RUN set -ex \
41
41
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
42
42
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
43
43
done \
44
- && curl -fSL -o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
45
- && curl -fSL -o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
44
+ && curl -fSL --compressed - o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
45
+ && curl -fSL --compressed - o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
46
46
&& gpg --batch --verify yarn.js.asc yarn.js \
47
47
&& rm yarn.js.asc \
48
48
&& mv yarn.js /usr/local/bin/yarn \
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ RUN addgroup -g 1000 node \
33
33
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
34
34
done \
35
35
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.xz" \
36
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
36
+ && curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
37
37
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
38
38
&& grep " node-v$NODE_VERSION.tar.xz\$ " SHASUMS256.txt | sha256sum -c - \
39
39
&& tar -xf "node-v$NODE_VERSION.tar.xz" \
@@ -56,8 +56,8 @@ RUN apk add --no-cache --virtual .build-deps-yarn curl gnupg \
56
56
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
57
57
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
58
58
done \
59
- && curl -fSL -o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
60
- && curl -fSL -o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
59
+ && curl -fSL --compressed - o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
60
+ && curl -fSL --compressed - o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
61
61
&& gpg --batch --verify yarn.js.asc yarn.js \
62
62
&& rm yarn.js.asc \
63
63
&& mv yarn.js /usr/local/bin/yarn \
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ RUN buildDeps='xz-utils' \
28
28
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
29
29
&& rm -rf /var/lib/apt/lists/* \
30
30
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
31
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
31
+ && curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
32
32
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
33
33
&& grep " node-v$NODE_VERSION-linux-x64.tar.xz\$ " SHASUMS256.txt | sha256sum -c - \
34
34
&& tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \
@@ -46,8 +46,8 @@ RUN set -ex \
46
46
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
47
47
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
48
48
done \
49
- && curl -fSL -o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
50
- && curl -fSL -o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
49
+ && curl -fSL --compressed - o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
50
+ && curl -fSL --compressed - o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
51
51
&& gpg --batch --verify yarn.js.asc yarn.js \
52
52
&& rm yarn.js.asc \
53
53
&& mv yarn.js /usr/local/bin/yarn \
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ ENV NPM_CONFIG_LOGLEVEL info
24
24
ENV NODE_VERSION 4.8.3
25
25
26
26
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
27
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
27
+ && curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
28
28
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
29
29
&& grep " node-v$NODE_VERSION-linux-x64.tar.xz\$ " SHASUMS256.txt | sha256sum -c - \
30
30
&& tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \
@@ -41,8 +41,8 @@ RUN set -ex \
41
41
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
42
42
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
43
43
done \
44
- && curl -fSL -o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
45
- && curl -fSL -o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
44
+ && curl -fSL --compressed - o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
45
+ && curl -fSL --compressed - o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
46
46
&& gpg --batch --verify yarn.js.asc yarn.js \
47
47
&& rm yarn.js.asc \
48
48
&& mv yarn.js /usr/local/bin/yarn \
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ ENV NPM_CONFIG_LOGLEVEL info
24
24
ENV NODE_VERSION 6.10.3
25
25
26
26
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
27
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
27
+ && curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
28
28
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
29
29
&& grep " node-v$NODE_VERSION-linux-x64.tar.xz\$ " SHASUMS256.txt | sha256sum -c - \
30
30
&& tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \
@@ -41,8 +41,8 @@ RUN set -ex \
41
41
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
42
42
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
43
43
done \
44
- && curl -fSL -o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
45
- && curl -fSL -o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
44
+ && curl -fSL --compressed - o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
45
+ && curl -fSL --compressed - o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
46
46
&& gpg --batch --verify yarn.js.asc yarn.js \
47
47
&& rm yarn.js.asc \
48
48
&& mv yarn.js /usr/local/bin/yarn \
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ RUN addgroup -g 1000 node \
33
33
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
34
34
done \
35
35
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.xz" \
36
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
36
+ && curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
37
37
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
38
38
&& grep " node-v$NODE_VERSION.tar.xz\$ " SHASUMS256.txt | sha256sum -c - \
39
39
&& tar -xf "node-v$NODE_VERSION.tar.xz" \
@@ -56,8 +56,8 @@ RUN apk add --no-cache --virtual .build-deps-yarn curl gnupg \
56
56
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
57
57
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
58
58
done \
59
- && curl -fSL -o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
60
- && curl -fSL -o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
59
+ && curl -fSL --compressed - o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
60
+ && curl -fSL --compressed - o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
61
61
&& gpg --batch --verify yarn.js.asc yarn.js \
62
62
&& rm yarn.js.asc \
63
63
&& mv yarn.js /usr/local/bin/yarn \
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ RUN buildDeps='xz-utils' \
28
28
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
29
29
&& rm -rf /var/lib/apt/lists/* \
30
30
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
31
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
31
+ && curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
32
32
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
33
33
&& grep " node-v$NODE_VERSION-linux-x64.tar.xz\$ " SHASUMS256.txt | sha256sum -c - \
34
34
&& tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \
@@ -46,8 +46,8 @@ RUN set -ex \
46
46
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
47
47
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
48
48
done \
49
- && curl -fSL -o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
50
- && curl -fSL -o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
49
+ && curl -fSL --compressed - o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
50
+ && curl -fSL --compressed - o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
51
51
&& gpg --batch --verify yarn.js.asc yarn.js \
52
52
&& rm yarn.js.asc \
53
53
&& mv yarn.js /usr/local/bin/yarn \
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ ENV NPM_CONFIG_LOGLEVEL info
24
24
ENV NODE_VERSION 6.10.3
25
25
26
26
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
27
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
27
+ && curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
28
28
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
29
29
&& grep " node-v$NODE_VERSION-linux-x64.tar.xz\$ " SHASUMS256.txt | sha256sum -c - \
30
30
&& tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \
@@ -41,8 +41,8 @@ RUN set -ex \
41
41
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
42
42
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
43
43
done \
44
- && curl -fSL -o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
45
- && curl -fSL -o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
44
+ && curl -fSL --compressed - o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
45
+ && curl -fSL --compressed - o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
46
46
&& gpg --batch --verify yarn.js.asc yarn.js \
47
47
&& rm yarn.js.asc \
48
48
&& mv yarn.js /usr/local/bin/yarn \
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ ENV NPM_CONFIG_LOGLEVEL info
24
24
ENV NODE_VERSION 7.10.0
25
25
26
26
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
27
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
27
+ && curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
28
28
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
29
29
&& grep " node-v$NODE_VERSION-linux-x64.tar.xz\$ " SHASUMS256.txt | sha256sum -c - \
30
30
&& tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \
@@ -41,8 +41,8 @@ RUN set -ex \
41
41
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
42
42
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
43
43
done \
44
- && curl -fSL -o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
45
- && curl -fSL -o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
44
+ && curl -fSL --compressed - o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
45
+ && curl -fSL --compressed - o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
46
46
&& gpg --batch --verify yarn.js.asc yarn.js \
47
47
&& rm yarn.js.asc \
48
48
&& mv yarn.js /usr/local/bin/yarn \
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ RUN addgroup -g 1000 node \
33
33
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
34
34
done \
35
35
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.xz" \
36
- && curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
36
+ && curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
37
37
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \
38
38
&& grep " node-v$NODE_VERSION.tar.xz\$ " SHASUMS256.txt | sha256sum -c - \
39
39
&& tar -xf "node-v$NODE_VERSION.tar.xz" \
@@ -56,8 +56,8 @@ RUN apk add --no-cache --virtual .build-deps-yarn curl gnupg \
56
56
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
57
57
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
58
58
done \
59
- && curl -fSL -o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
60
- && curl -fSL -o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
59
+ && curl -fSL --compressed - o yarn.js "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js" \
60
+ && curl -fSL --compressed - o yarn.js.asc "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-legacy-$YARN_VERSION.js.asc" \
61
61
&& gpg --batch --verify yarn.js.asc yarn.js \
62
62
&& rm yarn.js.asc \
63
63
&& mv yarn.js /usr/local/bin/yarn \
You can’t perform that action at this time.
0 commit comments