From 8e5b7538f64f6db0b3d3ef9a7f925fde93c2ff09 Mon Sep 17 00:00:00 2001 From: Joshua Seiger-Eatwell Date: Thu, 9 Jan 2025 23:17:41 +0100 Subject: [PATCH] added automatic accept on install/remove --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index b19ab02..1c81152 100644 --- a/Containerfile +++ b/Containerfile @@ -2,8 +2,8 @@ ARG FEDORA_MAJOR_VERSION=41 FROM quay.io/fedora-ostree-desktops/silverblue:${FEDORA_MAJOR_VERSION} -RUN dnf install vim ncdu && \ - dnf remove firefox firefox-langpacks && \ +RUN dnf install vim ncdu -y && \ + dnf remove firefox firefox-langpacks -y && \ systemctl enable bootc-fetch-apply-updates.timer && \ ostree container commit && \ bootc container lint \ No newline at end of file