Files
tpeetz 5b7c41c829
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
add Routes and Processors
2026-08-22 02:04:48 +02:00

26 lines
954 B
Bash
Executable File

#!/bin/sh
# script/cibuild:
set -e
cd "$(dirname "$0")/.."
echo " => Baue Image localhost/kontor-spring:0.3.0"
buildah build -t kontor-spring:0.3.0 kontor-spring
echo " => Baue Image localhost/kontor-api:0.3.0"
buildah build --volume /home/tpeetz/projects/kontor/kontor-model:/container/kontor-model -t kontor-api:0.3.0 kontor-api
echo " => Baue Image localhost/kontor-quarkus:0.3.0"
buildah build -t kontor-quarkus:0.3.0 kontor-quarkus
echo " => Baue Image localhost/kontor-echo:0.3.0"
buildah build -t kontor-echo:0.3.0 kontor-echo
echo " => Baue Image localhost/kontor-fiber:0.3.0"
buildah build -t kontor-fiber:0.3.0 kontor-fiber
echo " => Baue Image localhost/kontor-javalin:0.3.0"
buildah build -t kontor-javalin:0.3.0 kontor-javalin
echo " => Baue Image localhost/kontor-vue:0.3.0"
buildah build -t kontor-vue:0.3.0 kontor-vue
echo " => Baue Image localhost/kontor-angular:0.3.0"
buildah build -t kontor-angular:0.3.0 kontor-angular