Skip to content

Commit 0f85089

Browse files
Merge pull request #98 from StefanScherer/update-node-7.7.3
Update Node.js 7.7.3
2 parents 8fb3701 + 56b1ca9 commit 0f85089

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

node/7.7/Dockerfile

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.7.2
7-
ENV NODE_SHA256 94b544f8ce4b9e1cbb8c27ad3fccddc5880496ddddbff4137736d0c34dc67328
6+
ENV NODE_VERSION 7.7.3
7+
ENV NODE_SHA256 5d24781262a84adca35ed7a854076cf357e8ba9f37e5bcc2849f678b538302c7
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} ; \

node/7.7/README.md

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.7.2 installed.
3+
A Windows Server Core Docker container image with Node.js 7.7.3 installed.
44

55
## Building
66

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

1212
## Onbuild

node/7.7/nano/Dockerfile

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.7.2
7-
ENV NODE_SHA256 94b544f8ce4b9e1cbb8c27ad3fccddc5880496ddddbff4137736d0c34dc67328
6+
ENV NODE_VERSION 7.7.3
7+
ENV NODE_SHA256 5d24781262a84adca35ed7a854076cf357e8ba9f37e5bcc2849f678b538302c7
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} ; \

node/7.7/nano/onbuild/Dockerfile

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

33
RUN mkdir \app
44
WORKDIR /app

node/7.7/onbuild/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:7.7.2
1+
FROM node:7.7.3
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.7.2 7.7 7
3+
call :build 7.7.3 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.7.2 7.7 7
3+
call :push 7.7.3 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.7.2
3+
call :test 7.7.3
44

55
goto :eof
66
:test

0 commit comments

Comments
 (0)