8 lines
151 B
Bash
Executable File
8 lines
151 B
Bash
Executable File
#!/bin/sh
|
|
|
|
img=registry.gitlab.com/oceanbox/manifests/helmfile-cmp
|
|
tag=${1:-latest}
|
|
|
|
docker build -t "${img}":"${tag}" .
|
|
docker push "${img}":"${tag}"
|