From 520faf6ff61352f56bb68f3e4c564ecae5e30264 Mon Sep 17 00:00:00 2001 From: Joshua Seiger-Eatwell Date: Thu, 9 Jan 2025 23:10:49 +0100 Subject: [PATCH] switched to use bootc and dnf commands --- Containerfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Containerfile b/Containerfile index 520f29a..b19ab02 100644 --- a/Containerfile +++ b/Containerfile @@ -2,9 +2,8 @@ ARG FEDORA_MAJOR_VERSION=41 FROM quay.io/fedora-ostree-desktops/silverblue:${FEDORA_MAJOR_VERSION} -RUN rpm-ostree install vim ncdu && \ - rpm-ostree override remove firefox firefox-langpacks && \ - sed -i 's/#AutomaticUpdatePolicy.*/AutomaticUpdatePolicy=stage/' /etc/rpm-ostreed.conf && \ - systemctl enable rpm-ostreed-automatic.timer && \ - rpm-ostree cleanup -m && \ - ostree container commit +RUN dnf install vim ncdu && \ + dnf remove firefox firefox-langpacks && \ + systemctl enable bootc-fetch-apply-updates.timer && \ + ostree container commit && \ + bootc container lint \ No newline at end of file