From d0a5edc1f6b4cd40ce47ad7a39add6e9dd8a0b17 Mon Sep 17 00:00:00 2001 From: Max Goltzsche Date: Wed, 2 Apr 2025 22:59:06 +0200 Subject: [PATCH] bump podman 5.4.2 * podman 5.4.2 * runc 1.2.6 * crun 1.21 * netavark 1.14.1 * passt 2025_03_20.32f6212 --- Dockerfile | 10 +++++----- Dockerfile-remote | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index d8a67b6..9c9cdf3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apk add --no-cache gnupg # runc FROM golang:1.22-alpine3.20 AS runc -ARG RUNC_VERSION=v1.2.5 +ARG RUNC_VERSION=v1.2.6 # Download runc binary release since static build doesn't work with musl libc anymore since 1.1.8, see https://github.com/opencontainers/runc/issues/3950 RUN set -eux; \ ARCH="`uname -m | sed 's!x86_64!amd64!; s!aarch64!arm64!'`"; \ @@ -27,7 +27,7 @@ RUN apk add --update --no-cache git make gcc pkgconf musl-dev \ # podman (without systemd support) FROM podmanbuildbase AS podman RUN apk add --update --no-cache tzdata curl -ARG PODMAN_VERSION=v5.4.1 +ARG PODMAN_VERSION=v5.4.2 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 @@ -73,7 +73,7 @@ RUN apk add --update --no-cache git make musl-dev # netavark FROM rustbase AS netavark RUN apk add --update --no-cache protoc -ARG NETAVARK_VERSION=v1.14.0 +ARG NETAVARK_VERSION=v1.14.1 RUN git clone -c 'advice.detachedHead=false' --depth=1 --branch=$NETAVARK_VERSION https://github.com/containers/netavark WORKDIR /netavark ENV RUSTFLAGS='-C link-arg=-s' @@ -93,7 +93,7 @@ RUN cargo build --release FROM podmanbuildbase 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=2025_02_17.a1e48a0 +ARG PASST_VERSION=2025_03_20.32f6212 RUN git clone -c 'advice.detachedHead=false' --depth=1 --branch=$PASST_VERSION git://passt.top/passt WORKDIR /passt RUN set -ex; \ @@ -145,7 +145,7 @@ RUN set -ex; \ # Download crun # (switched keyserver from sks to ubuntu since sks is offline now and gpg refuses to import keys from keys.openpgp.org because it does not provide a user ID with the key.) FROM gpg AS crun -ARG CRUN_VERSION=1.20 +ARG CRUN_VERSION=1.21 RUN set -ex; \ ARCH="`uname -m | sed 's!x86_64!amd64!; s!aarch64!arm64!'`"; \ wget -O /usr/local/bin/crun https://github.com/containers/crun/releases/download/$CRUN_VERSION/crun-${CRUN_VERSION}-linux-${ARCH}-disable-systemd; \ diff --git a/Dockerfile-remote b/Dockerfile-remote index 196bc8b..9d0be9f 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.4.1 +ARG PODMAN_VERSION=v5.4.2 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; \