1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

set args to env

This commit is contained in:
Jason N. 2024-02-26 09:41:54 -05:00
parent 7f4b1d4e70
commit 6b9d2633f3
2 changed files with 8 additions and 3 deletions

View file

@ -3,10 +3,10 @@ FROM fedora:39
ARG VERSION=39
ENV ARCH="x86_64"
ENV IMAGE_NAME="base-main"
ENV IMAGE_REPO="ghcr.io/ublue-os"
ENV IMAGE_NAME="base"
ENV IMAGE_REPO="quay.io/fedora-ostree-desktops"
ENV IMAGE_TAG="${VERSION}"
ENV VARIANT="Kinoite"
ENV VARIANT="Server"
ENV VERSION="${VERSION}"
ENV WEB_UI="false"

View file

@ -2,6 +2,11 @@
set -ex
for entry in $@
do
export $entry
done
make build/container/${IMAGE_NAME}-${IMAGE_TAG} $@
make boot.iso $@