-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add casa and janssen integration (#25)
* chore: prepare v5.0.0 (jans-based) * chore: reorganize assets * chore: remove unused assets * chore: update build date * fix: set jansAttrs to empty hashmap * chore: remove unused assets * chore: introduce GLUU_SOURCE_URL env * feat: add option to use TLSv1.2 * feat: adjust permissions
- Loading branch information
Showing
25 changed files
with
654 additions
and
781 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
* | ||
|
||
# include required files/directories | ||
!certs | ||
!scripts | ||
!templates | ||
!LICENSE | ||
!requirements.txt | ||
!jetty |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
GLUU_VERSION=4.2.2 | ||
GLUU_VERSION=5.0.0 | ||
IMAGE_NAME=gluufederation/casa | ||
UNSTABLE_VERSION=dev | ||
|
||
build-dev: | ||
@echo "[I] Building Docker image ${IMAGE_NAME}:${GLUU_VERSION}_${UNSTABLE_VERSION}" | ||
@docker build --rm --force-rm -t ${IMAGE_NAME}:${GLUU_VERSION}_${UNSTABLE_VERSION} . | ||
|
||
trivy-scan: | ||
@echo "[I] Scanning Docker image ${IMAGE_NAME}:${GLUU_VERSION}_${UNSTABLE_VERSION} using trivy" | ||
@trivy -d image ${IMAGE_NAME}:${GLUU_VERSION}_${UNSTABLE_VERSION} | ||
|
||
dockle-scan: | ||
@echo "[I] Scanning Docker image ${IMAGE_NAME}:${GLUU_VERSION}_${UNSTABLE_VERSION} using dockle" | ||
@dockle -d ${IMAGE_NAME}:${GLUU_VERSION}_${UNSTABLE_VERSION} |
Oops, something went wrong.