Skip to content

Commit b30a53f

Browse files
Merge pull request #136 from StefanScherer/update-node-7.10
Update Node.js 7.10.0
2 parents 49303d3 + a06008c commit b30a53f

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN @( \
2020
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys $_ ; \
2121
}
2222

23-
ENV NODE_VERSION 7.9.0
23+
ENV NODE_VERSION 7.10.0
2424

2525
RUN Invoke-WebRequest $('https://nodejs.org/dist/v{0}/SHASUMS256.txt.asc' -f $env:NODE_VERSION) -OutFile 'SHASUMS256.txt.asc' -UseBasicParsing ; \
2626
gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Node
22

3-
A Windows Server Core Docker container image with Node.js 7.9.0 installed.
3+
A Windows Server Core Docker container image with Node.js 7.10.0 installed.
44

55
## Building
66

77
```
88
docker build -t node .
9-
docker tag node:latest node:7.9.0
9+
docker tag node:latest node:7.10.0
1010
```
1111

1212
## Onbuild
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN @( \
2020
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys $_ ; \
2121
}
2222

23-
ENV NODE_VERSION 7.9.0
23+
ENV NODE_VERSION 7.10.0
2424

2525
RUN Invoke-WebRequest $('https://nodejs.org/dist/v{0}/SHASUMS256.txt.asc' -f $env:NODE_VERSION) -OutFile 'SHASUMS256.txt.asc' -UseBasicParsing ; \
2626
gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:7.9.0-nanoserver
1+
FROM node:7.10.0-nanoserver
22

33
RUN mkdir \app
44
WORKDIR /app
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:7.9.0-windowsservercore
1+
FROM node:7.10.0-windowsservercore
22

33
RUN mkdir \app
44
WORKDIR /app

node/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ function buildVersion($majorMinorPatch, $majorMinor, $major) {
2424

2525
buildVersion "4.8.3" "4.8" "4"
2626
buildVersion "6.10.3" "6.10" "6"
27-
buildVersion "7.9.0" "7.9" "7"
27+
buildVersion "7.10.0" "7.10" "7"

node/push.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ function pushVersion($majorMinorPatch, $majorMinor, $major) {
3131

3232
pushVersion "4.8.3" "4.8" "4"
3333
pushVersion "6.10.3" "6.10" "6"
34-
pushVersion "7.9.0" "7.9" "7"
34+
pushVersion "7.10.0" "7.10" "7"

node/test.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ function testVersion($majorMinorPatch) {
1111

1212
testVersion "4.8.3"
1313
testVersion "6.10.3"
14-
testVersion "7.9.0"
14+
testVersion "7.10.0"

0 commit comments

Comments
 (0)