From a30b6afef397b4a511770ab235cc64bbafbedbb9 Mon Sep 17 00:00:00 2001 From: Erik Weber Date: Thu, 15 Dec 2022 13:34:26 +0100 Subject: [PATCH] Add zstd package to allow the usage of Zstandard compression Official GitHub runners added support for the Zstandard compressions as part of https://github.com/actions/runner-images/issues/89 Adding the `zstd` package would allow the compression algorithm to be used with OpenShift Runners as well. --- base/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/Containerfile b/base/Containerfile index f9b1795..e302923 100644 --- a/base/Containerfile +++ b/base/Containerfile @@ -3,7 +3,7 @@ FROM fedora:35 # Adapted from https://github.com/bbrowning/github-runner/blob/master/Dockerfile RUN dnf -y upgrade --security && \ dnf -y --setopt=skip_missing_names_on_install=False install \ - curl git jq hostname procps findutils which openssl && \ + curl git jq hostname procps findutils which openssl zstd && \ dnf clean all # The UID env var should be used in child Containerfile.