passed/build.sh
2024-11-09 19:34:45 +01:00

11 lines
211 B
Bash
Executable file

#!/bin/bash
set -e
commit="$(git rev-parse HEAD)"
image="git.1e99.eu/1e99/passed"
docker build -t $image:$commit .
docker tag $image:$commit $image:latest
docker push $image:$commit
docker push $image:latest