From 9a28f471e787b7adce4b32920b96cc84cdb9c40a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Primo=C5=BE=20Ajdi=C5=A1ek?= Date: Tue, 13 Jun 2023 21:02:24 +0200 Subject: [PATCH] fix: Added link from /usr/bin/rpm-ostree to /usr/bin/ dnf (#117) * ln -s /usr/bin/rpm-ostree /usr/bin/dnf * moved ln -s /usr/bin/rpm-ostree /usr/bin/dnf to build.Containerfile --- build.Containerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.Containerfile b/build.Containerfile index e737861..1c28c20 100644 --- a/build.Containerfile +++ b/build.Containerfile @@ -7,6 +7,8 @@ FROM ${BASE_IMAGE}:${FEDORA_MAJOR_VERSION} AS builder ARG NVIDIA_MAJOR_VERSION="${NVIDIA_MAJOR_VERSION:-525}" ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION}" +RUN ln -s /usr/bin/rpm-ostree /usr/bin/dnf + COPY build.sh /tmp/build.sh ADD certs /tmp/certs