From 1bf1785f2ac526c647c6e33d37e0bbd3d21a81b0 Mon Sep 17 00:00:00 2001 From: ER Date: Wed, 31 May 2023 19:25:49 +0300 Subject: [PATCH] docs: better inline docs in containerfile * explaining ARG default values --- Containerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Containerfile b/Containerfile index d047a98..152a4ee 100644 --- a/Containerfile +++ b/Containerfile @@ -1,7 +1,18 @@ +# This is the Containerfile for your custom image. + +# It takes in the recipe, version, and base image as arguments, +# all of which are provided by build.yml when doing builds +# in the cloud. The ARGs have default values, but changing those +# does nothing if the image is built in the cloud. + ARG FEDORA_MAJOR_VERSION=38 +# Warning: changing this might not do anything for you. Read comment above. ARG BASE_IMAGE_URL=ghcr.io/ublue-os/silverblue-main FROM ${BASE_IMAGE_URL}:${FEDORA_MAJOR_VERSION} + +# The default recipe set to the recipe's default filename +# so that `podman build` should just work for many people. ARG RECIPE=./recipe.yml # Copy static configurations and component files.