Skip to content

Commit 6cf0014

Browse files
Merge pull request #92 from StefanScherer/node-7.7.2
Update Node.js 7.7.2
2 parents 3fa4068 + 2320e29 commit 6cf0014

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.1
7-
ENV NODE_SHA256 d907f7cd20aff2e9ae087b0293b9c85ad3a61ea6ae6b1bdaa8f40696a6347878
6+
ENV NODE_VERSION 7.7.2
7+
ENV NODE_SHA256 94b544f8ce4b9e1cbb8c27ad3fccddc5880496ddddbff4137736d0c34dc67328
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.1 installed.
3+
A Windows Server Core Docker container image with Node.js 7.7.2 installed.
44

55
## Building
66

77
```
88
docker build -t node .
9-
docker tag node:latest node:7.7.1
9+
docker tag node:latest node:7.7.2
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.1
7-
ENV NODE_SHA256 d907f7cd20aff2e9ae087b0293b9c85ad3a61ea6ae6b1bdaa8f40696a6347878
6+
ENV NODE_VERSION 7.7.2
7+
ENV NODE_SHA256 94b544f8ce4b9e1cbb8c27ad3fccddc5880496ddddbff4137736d0c34dc67328
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.1-nano
1+
FROM node:7.7.2-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.1
1+
FROM node:7.7.2
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.1 7.7 7
3+
call :build 7.7.2 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.1 7.7 7
3+
call :push 7.7.2 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.1
3+
call :test 7.7.2
44

55
goto :eof
66
:test

0 commit comments

Comments
 (0)