Skip to content

Commit 4f2354e

Browse files
authored
1 parent 2d4c7b0 commit 4f2354e

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
@@ -18,7 +18,7 @@ env:
1818
- DOCTOCCHECK: true
1919
- NODE_VERSION: '4.8'
2020
- NODE_VERSION: '6.11'
21-
- NODE_VERSION: '8.1'
21+
- NODE_VERSION: '8.2'
2222

2323
matrix:
2424
include:

8.1/Dockerfile renamed to 8.2/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 8.1.4
24+
ENV NODE_VERSION 8.2.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.6
34+
ENV YARN_VERSION 0.27.5
3535

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

8.1/alpine/Dockerfile renamed to 8.2/alpine/Dockerfile

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

33
ENV NPM_CONFIG_LOGLEVEL info
4-
ENV NODE_VERSION 8.1.4
4+
ENV NODE_VERSION 8.2.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.6
49+
ENV YARN_VERSION 0.27.5
5050

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

8.1/onbuild/Dockerfile renamed to 8.2/onbuild/Dockerfile

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

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

8.1/slim/Dockerfile renamed to 8.2/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 8.1.4
24+
ENV NODE_VERSION 8.2.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.6
39+
ENV YARN_VERSION 0.27.5
4040

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

8.1/wheezy/Dockerfile renamed to 8.2/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 8.1.4
24+
ENV NODE_VERSION 8.2.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.6
34+
ENV YARN_VERSION 0.27.5
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
@@ -11,7 +11,7 @@ array_6_11='6 boron';
1111
# shellcheck disable=SC2034
1212
array_7_10='7';
1313
# shellcheck disable=SC2034
14-
array_8_1='8 latest';
14+
array_8_2='8 latest';
1515

1616
cd "$(cd "${0%/*}" && pwd -P)";
1717

0 commit comments

Comments
 (0)