Add versions 3.2.0.0, 3.2.0.1 and 3.2.0.2

This commit is contained in:
2025-03-02 00:05:37 +01:00
parent d5c6850960
commit 0dff2e2eda
2 changed files with 29 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
ARG S6_OVERLAY_VERSION="3.1.0.0" ARG S6_OVERLAY_VERSION="3.2.0.2"
ARG S6_OVERLAY_RELEASE="https://github.com/just-containers/s6-overlay/releases/download/" ARG S6_OVERLAY_RELEASE="https://github.com/just-containers/s6-overlay/releases/download/"
ARG S6_OVERLAY_PAK_EXT=".tar.xz" ARG S6_OVERLAY_PAK_EXT=".tar.xz"
@@ -66,4 +66,4 @@ FROM scratch AS s6-rootfs
LABEL maintainer="Aleksandar Puharic <aleksandar@puharic.com>" LABEL maintainer="Aleksandar Puharic <aleksandar@puharic.com>"
COPY --from=rootfs-builder ["/rootfs-build/", "/"] COPY --from=rootfs-builder ["/rootfs-build/", "/"]

View File

@@ -7,7 +7,8 @@ group "default" {
"3_1_1_1", "3_1_1_2", "3_1_2_0", "3_1_1_1", "3_1_1_2", "3_1_2_0",
"3_1_2_1", "3_1_3_0", "3_1_4_0", "3_1_2_1", "3_1_3_0", "3_1_4_0",
"3_1_4_1", "3_1_4_2", "3_1_5_0", "3_1_4_1", "3_1_4_2", "3_1_5_0",
"3_1_6_0", "3_1_6_1", "3_1_6_2" "3_1_6_0", "3_1_6_1", "3_1_6_2",
"3_2_0_0", "3_2_0_1", "3_2_0_2"
] ]
} }
@@ -279,6 +280,30 @@ target "3_1_6_2" {
inherits = ["build-dockerfile", "build-platforms", "build-common"] inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("3.1.6.2") cache-from = get-cache-from("3.1.6.2")
cache-to = get-cache-to("3.1.6.2") cache-to = get-cache-to("3.1.6.2")
tags = get-tags("3.1.6.2", ["3.1", "3.1.6", "latest"]) tags = get-tags("3.1.6.2", ["3.1", "3.1.6"])
args = get-args("3.1.6.2") args = get-args("3.1.6.2")
} }
target "3_2_0_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("3.2.0.0")
cache-to = get-cache-to("3.2.0.0")
tags = get-tags("3.2.0.0", [])
args = get-args("3.2.0.0")
}
target "3_2_0_1" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("3.2.0.1")
cache-to = get-cache-to("3.2.0.1")
tags = get-tags("3.2.0.1", [])
args = get-args("3.2.0.0")
}
target "3_2_0_2" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("3.2.0.2")
cache-to = get-cache-to("3.2.0.2")
tags = get-tags("3.2.0.2", ["3.2", "3.2.0", "latest"])
args = get-args("3.2.0.2")
}