1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00
build-container-installer/entrypoint.sh
2024-03-06 00:37:28 -06:00

18 lines
252 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 $@
mv build/deploy.iso build/${ISO_NAME}.iso