images/helm-chart-collator/build-image.sh
Ian Howell 116eb2cc93 Add a Helm chart collator
This adds a Dockerfile for an image which works as a Helm chart
repository. Charts can be pulled from either pre-existing
Helm repos or from git repos.

Change-Id: I860394eea3c322f2b142ea00dd7cc0a6916c34d5
2020-07-02 14:27:46 -05:00

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")\""