-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This update sets verify-profile required to true so we need to provide firstname, lastname and email for each user. Otherwise the user is forced to enter them during first login. Machine login is for those users not possible as long verify-profile is not happy
- Loading branch information
Showing
3 changed files
with
23 additions
and
4 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
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,4 +1,4 @@ | ||
FROM quay.io/keycloak/keycloak:23.0.7 as builder | ||
FROM quay.io/keycloak/keycloak:24.0.4 as builder | ||
ENV KC_HEALTH_ENABLED=true | ||
ENV KC_METRICS_ENABLED=true | ||
ENV KC_HTTP_RELATIVE_PATH=/kc | ||
|
@@ -11,7 +11,7 @@ FROM registry.access.redhat.com/ubi9 AS ubi-micro-build | |
RUN mkdir -p /mnt/rootfs | ||
RUN dnf install --installroot /mnt/rootfs curl --releasever 9 --setopt install_weak_deps=false --nodocs -y; dnf --installroot /mnt/rootfs clean all | ||
|
||
FROM quay.io/keycloak/keycloak:23.0.7 | ||
FROM quay.io/keycloak/keycloak:24.0.4 | ||
LABEL maintainer="[email protected]" | ||
COPY --from=builder /opt/keycloak/ /opt/keycloak/ | ||
COPY --from=ubi-micro-build /mnt/rootfs / | ||
|