From 42197cf4fc018b02818d174a9df46f8a1bec3562 Mon Sep 17 00:00:00 2001 From: Max Goltzsche Date: Tue, 16 Jun 2026 20:52:51 +0200 Subject: [PATCH] fix: bump podman 5.8.3 & dependencies * podman 5.8.3 * runc 1.4.3 * crun 1.28 * passt 2026_06_11.a9c61ff --- Dockerfile | 10 +++++----- Dockerfile-remote | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index b1bf547..f1d050e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN apk add --update --no-cache git make gcc pkgconf musl-dev \ # runc FROM golangbuildbase AS runc -ARG RUNC_VERSION=v1.4.2 +ARG RUNC_VERSION=v1.4.3 RUN git clone -c 'advice.detachedHead=false' --depth=1 --branch ${RUNC_VERSION} https://github.com/opencontainers/runc src/github.com/opencontainers/runc WORKDIR $GOPATH/src/github.com/opencontainers/runc RUN set -eux; \ @@ -27,7 +27,7 @@ RUN set -eux; \ # podman (without systemd support) FROM golangbuildbase AS podman RUN apk add --update --no-cache tzdata curl -ARG PODMAN_VERSION=v5.8.2 +ARG PODMAN_VERSION=v5.8.3 ARG PODMAN_BUILDTAGS='seccomp selinux apparmor exclude_graphdriver_devicemapper containers_image_openpgp' ARG PODMAN_CGO=1 RUN git clone -c 'advice.detachedHead=false' --depth=1 --branch ${PODMAN_VERSION} https://github.com/containers/podman src/github.com/containers/podman @@ -99,7 +99,7 @@ RUN cargo build --release FROM golangbuildbase AS passt WORKDIR / RUN apk add --update --no-cache autoconf automake meson ninja linux-headers libcap-static libcap-dev clang llvm coreutils -ARG PASST_VERSION=2026_01_20.386b5f5 +ARG PASST_VERSION=2026_06_11.a9c61ff RUN git clone -c 'advice.detachedHead=false' --depth=1 --branch=$PASST_VERSION git://passt.top/passt WORKDIR /passt RUN set -ex; \ @@ -150,8 +150,8 @@ RUN set -ex; \ # crun FROM golangbuildbase AS crun -RUN apk add --update --no-cache autoconf automake argp-standalone libtool libcap-dev libcap-static -ARG CRUN_VERSION=1.27 +RUN apk add --update --no-cache autoconf automake argp-standalone libtool libcap-dev libcap-static json-c-dev +ARG CRUN_VERSION=1.28 RUN git clone -c 'advice.detachedHead=false' --depth=1 --branch ${CRUN_VERSION} https://github.com/containers/crun src/github.com/containers/crun WORKDIR $GOPATH/src/github.com/containers/crun RUN set -ex; \ diff --git a/Dockerfile-remote b/Dockerfile-remote index ea413b3..1279c3e 100644 --- a/Dockerfile-remote +++ b/Dockerfile-remote @@ -9,7 +9,7 @@ RUN apk add --update --no-cache git make gcc pkgconf musl-dev \ # podman remote FROM podmanbuildbase AS podman-remote RUN apk add --update --no-cache curl -ARG PODMAN_VERSION=v5.8.2 +ARG PODMAN_VERSION=v5.8.3 RUN git clone -c advice.detachedHead=false --depth=1 --branch=${PODMAN_VERSION} https://github.com/containers/podman src/github.com/containers/podman WORKDIR $GOPATH/src/github.com/containers/podman RUN set -eux; \