registry/build.sh
Marc Cataford 019188cd37
All checks were successful
/ test (push) Successful in 38s
feat: allow specifying image version when starting
2024-04-09 00:16:05 -04:00

8 lines
142 B
Bash
Executable file

#!/bin/bash
image_name=$(jq .service_name ./service.json -r)
image_version=local
podman build \
-t "$image_name:$image_version" \
.