feat: first glance at the front and back end
This commit is contained in:
14
keycloak/CAS/build.sh
Normal file
14
keycloak/CAS/build.sh
Normal file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ ! -d "./keycloak-cas/" ]
|
||||
then
|
||||
git clone https://github.com/RoboJackets/keycloak-cas
|
||||
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
|
Reference in New Issue
Block a user