116eb2cc93
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
9 lines
165 B
Bash
Executable File
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")\""
|