Skip to content

Commit 3fa4068

Browse files
Merge pull request #91 from StefanScherer/node-7.7.1
Update Node.js 7.7.1
2 parents bbe9fdb + f2dac25 commit 3fa4068

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.0
7-
ENV NODE_SHA256 627749137dec7ad583a208919e1f5ea3a7a043911a6429cb3b6b9395a4efc773
6+
ENV NODE_VERSION 7.7.1
7+
ENV NODE_SHA256 d907f7cd20aff2e9ae087b0293b9c85ad3a61ea6ae6b1bdaa8f40696a6347878
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.0 installed.
3+
A Windows Server Core Docker container image with Node.js 7.7.1 installed.
44

55
## Building
66

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

55
goto :eof
66
:test

0 commit comments

Comments
 (0)