8 lines
157 B
Bash
8 lines
157 B
Bash
#!/bin/sh
|
|
|
|
img=registry.gitlab.com/oceanbox/gitops-manifests/kustomize-helm-with-rewrite
|
|
tag=${1:-latest}
|
|
|
|
docker build -t $img:$tag .
|
|
docker push $img:$tag
|