images/helm-chart-collator/build-image.sh

9 lines
165 B
Bash
Executable File

#!/bin/bash
if [[ $# != 1 ]]; then
printf "usage: ./%s <filename>\n" "$0"
exit 1
fi
docker build . -t helm-chart-collator --build-arg "CHARTS=\"$(cat "$1")\""