mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
20 lines
No EOL
293 B
Bash
20 lines
No EOL
293 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 $@
|
|
|
|
cp build/deploy.iso /github/workspace/build
|
|
chmod -R ugo=rwx /github/workspace/build |