From 6d778859c82924e920198c69c2e27bbabdf3ea3e Mon Sep 17 00:00:00 2001 From: Brian Beatty Date: Sat, 8 Apr 2023 13:18:45 -0500 Subject: [PATCH] fix: use RECIPE arg The RECIPE arg in the Containerfile is empty when it is before the FROM statement. This moves the arg so that it can be used. --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index beb54b7..f600dcc 100644 --- a/Containerfile +++ b/Containerfile @@ -1,8 +1,8 @@ ARG FEDORA_MAJOR_VERSION=37 ARG BASE_CONTAINER_URL=ghcr.io/ublue-os/silverblue-main -ARG RECIPE FROM ${BASE_CONTAINER_URL}:${FEDORA_MAJOR_VERSION} +ARG RECIPE # copy over configuration files COPY etc /etc