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-07 11:54:28 -06:00

17 lines
208 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 $@