From 05b1d981d2ca762deb9ef3bf91224f26ac4b3211 Mon Sep 17 00:00:00 2001 From: Robert Sturla Date: Mon, 19 Dec 2022 18:08:40 +0000 Subject: [PATCH] Reconfigure Containerfile to accept FEDORA_MAJOR_VERSION as ARG input --- Containerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 3c6c05f..36a7559 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,6 @@ -FROM ghcr.io/cgwalters/fedora-silverblue:37 +ARG FEDORA_MAJOR_VERSION=37 + +FROM ghcr.io/cgwalters/fedora-silverblue:${FEDORA_MAJOR_VERSION} # See https://pagure.io/releng/issue/11047 for final location COPY etc /etc @@ -11,4 +13,4 @@ RUN rpm-ostree override remove firefox firefox-langpacks && \ systemctl enable rpm-ostreed-automatic.timer && \ systemctl enable flatpak-automatic.timer && \ rpm-ostree cleanup -m && \ - ostree container commit \ No newline at end of file + ostree container commit