Skip to content

Commit 68c976c

Browse files
committed
Remove EOL nodejs14
Signed-off-by: Sora Morimoto <sora@morimoto.io>
1 parent 7625263 commit 68c976c

7 files changed

Lines changed: 2 additions & 31 deletions

File tree

BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ PYTHON3 |= {
196196

197197
## NODEJS
198198
NODEJS_VERSIONS = [
199-
"14",
200199
"16",
201200
"18",
202201
]

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ The following images are currently published and updated by the distroless proje
3838
| gcr.io/distroless/java-base-debian11 | latest, nonroot, debug, debug-nonroot |
3939
| gcr.io/distroless/java11-debian11 | latest, nonroot, debug, debug-nonroot |
4040
| gcr.io/distroless/java17-debian11 | latest, nonroot, debug, debug-nonroot |
41-
| gcr.io/distroless/nodejs14-debian11 | latest, nonroot, debug, debug-nonroot |
4241
| gcr.io/distroless/nodejs16-debian11 | latest, nonroot, debug, debug-nonroot |
4342
| gcr.io/distroless/nodejs18-debian11 | latest, nonroot, debug, debug-nonroot |
4443

@@ -101,7 +100,6 @@ Follow these steps to get started:
101100
* [gcr.io/distroless/java11-debian11](java/README.md)
102101
* [gcr.io/distroless/java17-debian11](java/README.md)
103102
* [gcr.io/distroless/cc-debian11](cc/README.md)
104-
* [gcr.io/distroless/nodejs14-debian11](nodejs/README.md)
105103
* [gcr.io/distroless/nodejs16-debian11](nodejs/README.md)
106104
* [gcr.io/distroless/nodejs18-debian11](nodejs/README.md)
107105

SUPPORT_POLICY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The current estimation of end of life for images with the pattern:
2121
Java will only support current LTS version distributed by debian [see here](https://wiki.debian.org/Java).
2222

2323
### Node
24-
Node version support is for even numbered releases (14, 16, 18, etc) that are current, active or in LTS maintenance. For more information, [see here](https://nodejs.org/en/about/releases/).
24+
Node version support is for even numbered releases (16, 18, etc) that are current, active or in LTS maintenance. For more information, [see here](https://nodejs.org/en/about/releases/).
2525

2626
### Python
2727
Python support is experimental, and this project does not make any guarantees about the version of python in images.

node_archives.bzl

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,6 @@ load("//private/remote:node_archive.bzl", "node_archive")
33
def repositories():
44
# Node (https://nodejs.org/en/about/releases/)
55
# Follow Node's maintainence schedule and support all LTS versions that are not end of life
6-
node_archive(
7-
name = "nodejs14_amd64",
8-
sha256 = "bef2685d9469058c1229cc7789e171861044fe3f70316ec744e9bf3609cd45ed",
9-
strip_prefix = "node-v14.21.3-linux-x64/",
10-
urls = ["https://nodejs.org/dist/v14.21.3/node-v14.21.3-linux-x64.tar.gz"],
11-
version = "14.21.3",
12-
architecture = "amd64",
13-
control = "//nodejs:control",
14-
)
156

167
node_archive(
178
name = "nodejs16_amd64",
@@ -33,16 +24,6 @@ def repositories():
3324
control = "//nodejs:control",
3425
)
3526

36-
node_archive(
37-
name = "nodejs14_arm64",
38-
sha256 = "044b7ec3fea04cd3815d26901ee37203dcc942688b72ee6eac96f6a1ca3cc63f",
39-
strip_prefix = "node-v14.21.3-linux-arm64/",
40-
urls = ["https://nodejs.org/dist/v14.21.3/node-v14.21.3-linux-arm64.tar.gz"],
41-
version = "14.21.3",
42-
architecture = "arm64",
43-
control = "//nodejs:control",
44-
)
45-
4627
node_archive(
4728
name = "nodejs16_arm64",
4829
sha256 = "58ea2f702936832fcf7d9cf1e9249bb7d9769185f8ad2ece05a70a7f61dbf879",

nodejs/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ load("@rules_pkg//:pkg.bzl", "pkg_tar")
55

66
package(default_visibility = ["//visibility:public"])
77

8-
NODEJS_MAJOR_VERISONS = ("14", "16", "18")
8+
NODEJS_MAJOR_VERISONS = ("16", "18")
99

1010
MODE = [
1111
"",

nodejs/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ These images contain a minimal Linux, Node.js-based runtime. The supported versi
66

77
Specifically, these images contain everything in the [base image](../base/README.md), plus one of:
88

9-
- Node.js v14 (`gcr.io/distroless/nodejs14-debian11`) and its dependencies.
109
- Node.js v16 (`gcr.io/distroless/nodejs16-debian11`) and its dependencies.
1110
- Node.js v18 (`gcr.io/distroless/nodejs18-debian11`) and its dependencies.
1211

nodejs/testdata/nodejs14.yaml

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

0 commit comments

Comments
 (0)