Skip to content
Snippets Groups Projects
Verified Commit 8f79bf35 authored by Felix Eckhofer's avatar Felix Eckhofer :man_dancing:
Browse files

Add build helper script

parent a112c4cb
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
set -eEuo pipefail
[ -z "$(git status --porcelain)" ] || {
echo "uncommited changes, clean up first"
exit 1
}
docker build -t registry.git.cccv.de/c3lingo/rescheduled:latest .
echo "Build done."
docker push registry.git.cccv.de/c3lingo/rescheduled:latest
echo "Push done."
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment