Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN pnpm build-keycloak-theme
# ================================================================== #
# Builder of keycloak with essential features #
# ================================================================== #
FROM quay.io/keycloak/keycloak:26.2 AS sso-builder
FROM quay.io/keycloak/keycloak:26.5 AS sso-builder

ENV KC_HEALTH_ENABLED=true
ENV KC_METRICS_ENABLED=false
Expand All @@ -64,7 +64,7 @@ RUN /opt/keycloak/bin/kc.sh build --health-enabled=true
# ================================================================== #
# Runtime keycloak with theme and essential features #
# ================================================================== #
FROM quay.io/keycloak/keycloak:26.2 AS sso-runtime
FROM quay.io/keycloak/keycloak:26.5 AS sso-runtime

WORKDIR /opt/keycloak
COPY --from=sso-builder /opt/keycloak/ /opt/keycloak/
Expand Down