6 lines
169 B
Bash
Executable file
6 lines
169 B
Bash
Executable file
#!/bin/bash
|
|
|
|
readonly image_tag="registry.garrity.co:8443/gs/ci-containers:latest"
|
|
|
|
podman build --tag "$image_tag" .
|
|
podman run --rm -it --entrypoint bash "$image_tag"
|