mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 19:07:54 +01:00
16 lines
209 B
Bash
16 lines
209 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
for entry in $@; do
|
|
export $entry
|
|
done
|
|
|
|
# Pull container
|
|
make container/${IMAGE_NAME}-${IMAGE_TAG} $@
|
|
|
|
# Build base ISO
|
|
make boot.iso $@
|
|
|
|
# Add container to ISO
|
|
make build/deploy.iso $@
|