Skip to content

Commit ed2e2aa

Browse files
authored
Merge e2b78b4 into 67c9656
2 parents 67c9656 + e2b78b4 commit ed2e2aa

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ script:
99
env:
1010
matrix :
1111
- NODE_VERSION: '4.8'
12-
- NODE_VERSION: '6.10'
12+
- NODE_VERSION: '6.11'
1313
- NODE_VERSION: '8.0'

6.10/Dockerfile renamed to 6.11/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN set -ex \
2121
done
2222

2323
ENV NPM_CONFIG_LOGLEVEL info
24-
ENV NODE_VERSION 6.10.3
24+
ENV NODE_VERSION 6.11.0
2525

2626
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2727
&& curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
@@ -31,7 +31,7 @@ RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-
3131
&& rm "node-v$NODE_VERSION-linux-x64.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \
3232
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs
3333

34-
ENV YARN_VERSION 0.24.4
34+
ENV YARN_VERSION 0.24.6
3535

3636
RUN set -ex \
3737
&& for key in \

6.10/alpine/Dockerfile renamed to 6.11/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM alpine:3.4
22

33
ENV NPM_CONFIG_LOGLEVEL info
4-
ENV NODE_VERSION 6.10.3
4+
ENV NODE_VERSION 6.11.0
55

66
RUN addgroup -g 1000 node \
77
&& adduser -u 1000 -G node -s /bin/sh -D node \
@@ -46,7 +46,7 @@ RUN addgroup -g 1000 node \
4646
&& rm -Rf "node-v$NODE_VERSION" \
4747
&& rm "node-v$NODE_VERSION.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt
4848

49-
ENV YARN_VERSION 0.24.4
49+
ENV YARN_VERSION 0.24.6
5050

5151
RUN apk add --no-cache --virtual .build-deps-yarn curl gnupg tar \
5252
&& for key in \

6.10/onbuild/Dockerfile renamed to 6.11/onbuild/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:6.10.3
1+
FROM node:6.11.0
22

33
RUN mkdir -p /usr/src/app
44
WORKDIR /usr/src/app

6.10/slim/Dockerfile renamed to 6.11/slim/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN set -ex \
2121
done
2222

2323
ENV NPM_CONFIG_LOGLEVEL info
24-
ENV NODE_VERSION 6.10.3
24+
ENV NODE_VERSION 6.11.0
2525

2626
RUN buildDeps='xz-utils' \
2727
&& set -x \
@@ -36,7 +36,7 @@ RUN buildDeps='xz-utils' \
3636
&& apt-get purge -y --auto-remove $buildDeps \
3737
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs
3838

39-
ENV YARN_VERSION 0.24.4
39+
ENV YARN_VERSION 0.24.6
4040

4141
RUN set -ex \
4242
&& for key in \

6.10/wheezy/Dockerfile renamed to 6.11/wheezy/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN set -ex \
2121
done
2222

2323
ENV NPM_CONFIG_LOGLEVEL info
24-
ENV NODE_VERSION 6.10.3
24+
ENV NODE_VERSION 6.11.0
2525

2626
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \
2727
&& curl -SLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
@@ -31,7 +31,7 @@ RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-
3131
&& rm "node-v$NODE_VERSION-linux-x64.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \
3232
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs
3333

34-
ENV YARN_VERSION 0.24.4
34+
ENV YARN_VERSION 0.24.6
3535

3636
RUN set -ex \
3737
&& for key in \

generate-stackbrew-library.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
hash git 2>/dev/null || { echo >&2 "git not found, exiting."; }
55

66
array_4_8='4 argon';
7-
array_6_10='6 boron';
7+
array_6_11='6 boron';
88
array_8_0='8 latest';
99

1010
cd $(cd ${0%/*} && pwd -P);

0 commit comments

Comments
 (0)