From 716e4cb72bc303e9390a80c92faae1ad117fb21b Mon Sep 17 00:00:00 2001 From: Max Goltzsche Date: Thu, 17 Oct 2024 23:10:28 +0200 Subject: [PATCH] fix: bump podman 5.2.4, runc 1.1.15 --- Dockerfile | 4 ++-- Dockerfile-remote | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ed1bd1..f78269e 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.1.14 +ARG RUNC_VERSION=v1.1.15 # 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.2.3 +ARG PODMAN_VERSION=v5.2.4 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 diff --git a/Dockerfile-remote b/Dockerfile-remote index e72eca6..9cf09be 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.2.3 +ARG PODMAN_VERSION=v5.2.4 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; \