fix: config stuff, do make keycloak first
Some checks failed
Format / formatting (push) Successful in 6s
Build / build (push) Successful in 43s
CI / build (push) Failing after 10s

This commit is contained in:
2025-05-09 00:40:41 +02:00
parent 7f16cdc86f
commit 63327bc312
9 changed files with 2709 additions and 18 deletions

15
keycloak/CAS/build.sh Normal file
View File

@ -0,0 +1,15 @@
#!/bin/bash
if [ ! -d "./keycloak-cas/" ]
then
git clone https://github.com/RoboJackets/keycloak-cas
patch $(find . | grep UrlHelper.java) https_patch
fi
if [ -d "./target/" ]
then
rm -r target/
fi
docker build -t build-dep .
docker create -it --name build-dep-container build-dep bash
docker cp build-dep-container:/target ./target
docker rm -f build-dep-container