Skip to content

Commit 2909365

Browse files
committed
Update Node.js 7.6.0
1 parent 9929951 commit 2909365

9 files changed

Lines changed: 17 additions & 17 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM microsoft/windowsservercore
33
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
44

55
ENV NPM_CONFIG_LOGLEVEL info
6-
ENV NODE_VERSION 7.5.0
7-
ENV NODE_SHA256 b47b31db2d78745c223c98d62a2d12a29a683eafa8277ce13f384ba86e2177cb
6+
ENV NODE_VERSION 7.6.0
7+
ENV NODE_SHA256 9cc8fd129483aa64557155842dc8f1e7ed288efeab1a7fbb0210314bc7213058
88

99
RUN Invoke-WebRequest $('https://nodejs.org/dist/v{0}/node-v{0}-win-x64.zip' -f $env:NODE_VERSION) -OutFile 'node.zip' -UseBasicParsing ; \
1010
if ((Get-FileHash node.zip -Algorithm sha256).Hash -ne $env:NODE_SHA256) {exit 1} ; \
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.5.0 installed.
3+
A Windows Server Core Docker container image with Node.js 7.6.0 installed.
44

55
## Building
66

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

1212
## Onbuild
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM microsoft/nanoserver
33
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
44

55
ENV NPM_CONFIG_LOGLEVEL info
6-
ENV NODE_VERSION 7.5.0
7-
ENV NODE_SHA256 b47b31db2d78745c223c98d62a2d12a29a683eafa8277ce13f384ba86e2177cb
6+
ENV NODE_VERSION 7.6.0
7+
ENV NODE_SHA256 9cc8fd129483aa64557155842dc8f1e7ed288efeab1a7fbb0210314bc7213058
88

99
RUN Invoke-WebRequest $('https://nodejs.org/dist/v{0}/node-v{0}-win-x64.zip' -f $env:NODE_VERSION) -OutFile 'node.zip' -UseBasicParsing ; \
1010
if ((Get-FileHash node.zip -Algorithm sha256).Hash -ne $env:NODE_SHA256) {exit 1} ; \
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:7.5.0-nano
1+
FROM node:7.6.0-nano
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.5.0
1+
FROM node:7.6.0
22

33
RUN mkdir \app
44
WORKDIR /app

node/build.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
call :build 4.7.3 4.7 4
2-
call :build 6.9.5 6.9 6
3-
call :build 7.5.0 7.5 7
1+
call :build 4.8.0 4.8 4
2+
call :build 6.10.0 6.10 6
3+
call :build 7.6.0 7.6 7
44

55
goto :eof
66
:build

node/push.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
call :push 4.7.3 4.7 4
2-
call :push 6.9.5 6.9 6
3-
call :push 7.5.0 7.5 7
1+
call :push 4.8.0 4.8 4
2+
call :push 6.10.0 6.10 6
3+
call :push 7.6.0 7.6 7
44

55
goto :eof
66
:push

node/test.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
call :test 4.7.3
2-
call :test 6.9.5
3-
call :test 7.5.0
1+
call :test 4.8.0
2+
call :test 6.10.0
3+
call :test 7.6.0
44

55
goto :eof
66
:test

0 commit comments

Comments
 (0)