26 lines
879 B
Bash
Executable File
26 lines
879 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 -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
|
|
|