From 9ee2d32d280db5c728a4409aab412efa5bb3cb80 Mon Sep 17 00:00:00 2001 From: Max Goltzsche Date: Sun, 21 Jul 2024 19:39:32 +0200 Subject: [PATCH] fix: bump podman 5.1.2 + dependency update Updates: * podman 5.1.2 * runc 1.13 * conmon 2.1.12 * netavark 1.11.0 * aardvark-dns 1.11.0 * passt 2024_06_24.1ee2eca * fuse-overlayfs 1.14 --- Dockerfile | 14 +++++++------- Dockerfile-remote | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index aa31586..5e593d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apk add --no-cache gnupg # runc FROM golang:1.22-alpine3.19 AS runc -ARG RUNC_VERSION=v1.1.12 +ARG RUNC_VERSION=v1.1.13 # 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.1.1 +ARG PODMAN_VERSION=v5.1.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 @@ -51,7 +51,7 @@ RUN set -ex; \ # conmon (without systemd support) FROM podmanbuildbase AS conmon -ARG CONMON_VERSION=v2.1.11 +ARG CONMON_VERSION=v2.1.12 RUN git clone -c 'advice.detachedHead=false' --depth=1 --branch ${CONMON_VERSION} https://github.com/containers/conmon.git /conmon WORKDIR /conmon RUN set -ex; \ @@ -66,7 +66,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.10.3 +ARG NETAVARK_VERSION=v1.11.0 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' @@ -75,7 +75,7 @@ RUN cargo build --release # aardvark-dns FROM rustbase AS aardvark-dns -ARG AARDVARKDNS_VERSION=v1.10.0 +ARG AARDVARKDNS_VERSION=v1.11.0 RUN git clone -c 'advice.detachedHead=false' --depth=1 --branch=$AARDVARKDNS_VERSION https://github.com/containers/aardvark-dns WORKDIR /aardvark-dns ENV RUSTFLAGS='-C link-arg=-s' @@ -86,7 +86,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=2024_05_23.765eb0b +ARG PASST_VERSION=2024_06_24.1ee2eca RUN git clone -c 'advice.detachedHead=false' --depth=1 --branch=$PASST_VERSION git://passt.top/passt WORKDIR /passt RUN set -ex; \ @@ -111,7 +111,7 @@ RUN set -ex; \ touch /dev/fuse; \ ninja install; \ fusermount3 -V -ARG FUSEOVERLAYFS_VERSION=v1.13 +ARG FUSEOVERLAYFS_VERSION=v1.14 RUN git clone -c 'advice.detachedHead=false' --depth=1 --branch=$FUSEOVERLAYFS_VERSION https://github.com/containers/fuse-overlayfs /fuse-overlayfs WORKDIR /fuse-overlayfs RUN set -ex; \ diff --git a/Dockerfile-remote b/Dockerfile-remote index 2301de1..c7201b3 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.1.1 +ARG PODMAN_VERSION=v5.1.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; \