feat(docker): adjust entrypoint.sh for new imprinturl flag
docker / docker (push) Successful in 4m48s
build / Go-Build (push) Failing after 51s

This commit is contained in:
2026-06-24 12:12:51 +02:00
parent bfafd63b33
commit fbe10a0288
+4
View File
@@ -42,4 +42,8 @@ if [ -n "$SIGNINGKEY" ]; then
CMD="$CMD --signingKey $SIGNINGKEY" CMD="$CMD --signingKey $SIGNINGKEY"
fi fi
if [ -n "$IMPRINTURL" ]; then
CMD="$CMD --imprinturl $IMPRINTURL"
fi
eval exec $CMD "$@" eval exec $CMD "$@"