Skip to content

Commit 40511bf

Browse files
Merge pull request #710 from westy92/remove-node-js-4
Remove Node.js 4
2 parents 1769717 + 36135d5 commit 40511bf

File tree

12 files changed

+5
-372
lines changed

12 files changed

+5
-372
lines changed

.travis.yml

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -68,36 +68,6 @@ jobs:
6868
- NODE_VERSION: "10"
6969
- VARIANT: "wheezy"
7070

71-
- stage: Build
72-
env:
73-
- NODE_VERSION: "4"
74-
- VARIANT: "default"
75-
76-
- stage: Build
77-
env:
78-
- NODE_VERSION: "4"
79-
- VARIANT: "alpine"
80-
81-
- stage: Build
82-
env:
83-
- NODE_VERSION: "4"
84-
- VARIANT: "onbuild"
85-
86-
- stage: Build
87-
env:
88-
- NODE_VERSION: "4"
89-
- VARIANT: "slim"
90-
91-
- stage: Build
92-
env:
93-
- NODE_VERSION: "4"
94-
- VARIANT: "stretch"
95-
96-
- stage: Build
97-
env:
98-
- NODE_VERSION: "4"
99-
- VARIANT: "wheezy"
100-
10171
- stage: Build
10272
env:
10373
- NODE_VERSION: "6"

4/Dockerfile

Lines changed: 0 additions & 62 deletions
This file was deleted.

4/alpine/Dockerfile

Lines changed: 0 additions & 68 deletions
This file was deleted.

4/architectures

Lines changed: 0 additions & 6 deletions
This file was deleted.

4/onbuild/Dockerfile

Lines changed: 0 additions & 12 deletions
This file was deleted.

4/slim/Dockerfile

Lines changed: 0 additions & 67 deletions
This file was deleted.

4/stretch/Dockerfile

Lines changed: 0 additions & 62 deletions
This file was deleted.

4/wheezy/Dockerfile

Lines changed: 0 additions & 58 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ complete `Dockerfile`. In such cases, you can run a Node.js script by using the
9999
Node.js Docker image directly:
100100

101101
```console
102-
$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/app -w /usr/src/app node:4 node your-daemon-or-script.js
102+
$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/app -w /usr/src/app node:8 node your-daemon-or-script.js
103103
```
104104

105105
## Verbosity
106106

107-
Prior to 8.7.0, 6.11.4 and 4.8.4 the docker images overrode the default npm log
107+
Prior to 8.7.0 and 6.11.4 the docker images overrode the default npm log
108108
level from `warn` to `info`. However due to improvements to npm and new Docker
109109
patterns (e.g. multi-stage builds) the working group reached a [consensus](https://github.com/nodejs/docker-node/issues/528)
110110
to revert the log level to npm defaults. If you need more verbose output, please

0 commit comments

Comments
 (0)