diff --git a/Makefile b/Makefile index 51a23ac6..e89b9531 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ include common/packages.mk GHA_MATRIX ?= minimal ifeq ($(GHA_MATRIX),minimal) - GHA_RELEASES := debian10 debian11 debian12 ubuntu2004 ubuntu2204 ubuntu2304 centos7 centos9 oraclelinux7 fedora37 fedora38 static + GHA_RELEASES := debian10 debian11 debian12 ubuntu2004 ubuntu2204 ubuntu2304 ubuntu2310 centos7 centos9 oraclelinux7 fedora37 fedora38 static else ifeq ($(GHA_MATRIX),all) GHA_RELEASES := $(PKG_DEB_RELEASES) $(PKG_RPM_RELEASES) static else diff --git a/common/packages.hcl b/common/packages.hcl index 42614eec..7d2393fa 100644 --- a/common/packages.hcl +++ b/common/packages.hcl @@ -163,6 +163,17 @@ target "_pkg-ubuntu2304" { } } +target "_pkg-ubuntu2310" { + args = { + PKG_RELEASE = "ubuntu2310" + PKG_TYPE = "deb" + PKG_DISTRO = "ubuntu" + PKG_DISTRO_ID = "23.10" + PKG_DISTRO_SUITE = "mantic" + PKG_BASE_IMAGE = "ubuntu:mantic" + } +} + target "_pkg-centos7" { args = { PKG_RELEASE = "centos7" diff --git a/common/packages.mk b/common/packages.mk index e86ca839..42649a14 100644 --- a/common/packages.mk +++ b/common/packages.mk @@ -148,6 +148,16 @@ pkg-info-ubuntu2304: @# FIXME: linux/riscv64 is not supported (golang base image does not support riscv64) $(eval PKG_SUPPORTED_PLATFORMS = linux/amd64 linux/arm64 linux/arm/v7 linux/ppc64le linux/s390x) +.PHONY: pkg-info-ubuntu2310 +pkg-info-ubuntu2310: + $(eval PKG_TYPE = deb) + $(eval PKG_DISTRO = ubuntu) + $(eval PKG_DISTRO_ID = 23.10) + $(eval PKG_DISTRO_SUITE = mantic) + $(eval PKG_BASE_IMAGE = ubuntu:mantic) + @# FIXME: linux/riscv64 is not supported (golang base image does not support riscv64) + $(eval PKG_SUPPORTED_PLATFORMS = linux/amd64 linux/arm64 linux/arm/v7 linux/ppc64le linux/s390x) + .PHONY: pkg-info-centos7 pkg-info-centos7: $(eval PKG_TYPE = rpm) diff --git a/pkg/docker-cli/Dockerfile b/pkg/docker-cli/Dockerfile index 712be4a7..1f67b6dd 100644 --- a/pkg/docker-cli/Dockerfile +++ b/pkg/docker-cli/Dockerfile @@ -96,7 +96,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends apt-utils bash RUN <