From 32665b0b609a586635deead26253cf7bdedb8522 Mon Sep 17 00:00:00 2001 From: jptaranto Date: Wed, 30 Aug 2023 11:40:06 +1000 Subject: [PATCH] add containers for node 18 and 20 --- node/Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/node/Makefile b/node/Makefile index 814052b..4697adc 100644 --- a/node/Makefile +++ b/node/Makefile @@ -10,7 +10,7 @@ define pushimage docker push $(IMAGE):$(1)-$(2) endef -build: build12 build14 build16 +build: build12 build14 build16 build18 build20 lint: hadolint Dockerfile @@ -24,9 +24,17 @@ build14: build16: $(call buildimage,3.14,16,1.x) +build18: + $(call buildimage,3.14,18,1.x) + +build20: + $(call buildimage,3.14,20,1.x) + push: build $(call pushimage,12,1.x) $(call pushimage,14,1.x) $(call pushimage,16,1.x) + $(call pushimage,18,1.x) + $(call pushimage,20,1.x) .PHONY: *