Skip to content

Commit 51a90e8

Browse files
Merge pull request #89 from StefanScherer/node-7.7.0
Update Node.js 7.7.0
2 parents c951f89 + 34e0f76 commit 51a90e8

9 files changed

Lines changed: 11 additions & 11 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.6.0
7-
ENV NODE_SHA256 9cc8fd129483aa64557155842dc8f1e7ed288efeab1a7fbb0210314bc7213058
6+
ENV NODE_VERSION 7.7.0
7+
ENV NODE_SHA256 627749137dec7ad583a208919e1f5ea3a7a043911a6429cb3b6b9395a4efc773
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.6.0 installed.
3+
A Windows Server Core Docker container image with Node.js 7.7.0 installed.
44

55
## Building
66

77
```
88
docker build -t node .
9-
docker tag node:latest node:7.6.0
9+
docker tag node:latest node:7.7.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.6.0
7-
ENV NODE_SHA256 9cc8fd129483aa64557155842dc8f1e7ed288efeab1a7fbb0210314bc7213058
6+
ENV NODE_VERSION 7.7.0
7+
ENV NODE_SHA256 627749137dec7ad583a208919e1f5ea3a7a043911a6429cb3b6b9395a4efc773
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.6.0-nano
1+
FROM node:7.7.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.6.0
1+
FROM node:7.7.0
22

33
RUN mkdir \app
44
WORKDIR /app

node/build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
call :build 4.8.0 4.8 4
22
call :build 6.10.0 6.10 6
3-
call :build 7.6.0 7.6 7
3+
call :build 7.7.0 7.7 7
44

55
goto :eof
66
:build

node/push.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
call :push 4.8.0 4.8 4
22
call :push 6.10.0 6.10 6
3-
call :push 7.6.0 7.6 7
3+
call :push 7.7.0 7.7 7
44

55
goto :eof
66
:push

node/test.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
call :test 4.8.0
22
call :test 6.10.0
3-
call :test 7.6.0
3+
call :test 7.7.0
44

55
goto :eof
66
:test

0 commit comments

Comments
 (0)