From 2f8e957713a35511f7e2f365e05f1faa40a494e5 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sun, 27 Aug 2023 21:39:37 +0200 Subject: [PATCH] Dockerfile: update crun binary to v1.8.7 Updating the version of crun that we use in our tests to a version that supports the "features" command (crun v1.8.6 and up). This should prevent some warnings in our logs: WARN[2023-08-26T17:05:35.042978552Z] Failed to run [/usr/local/bin/crun features]: "unknown command features\n" error="exit status 1" full diff: https://github.com/containers/crun/compare/1.4.5...1.8.7 Signed-off-by: Sebastiaan van Stijn --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b3dcad3c16..3d83ad5e4d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -381,7 +381,7 @@ FROM binary-dummy AS rootlesskit-windows FROM rootlesskit-${TARGETOS} AS rootlesskit FROM base AS crun -ARG CRUN_VERSION=1.4.5 +ARG CRUN_VERSION=1.8.7 RUN --mount=type=cache,sharing=locked,id=moby-crun-aptlib,target=/var/lib/apt \ --mount=type=cache,sharing=locked,id=moby-crun-aptcache,target=/var/cache/apt \ apt-get update && apt-get install -y --no-install-recommends \