version upgrade to 25.0.6-0
All checks were successful
ci/woodpecker/tag/woodpecker Pipeline was successful

This commit is contained in:
Peter Schuller 2024-09-20 07:07:33 +02:00
parent 874ec24e2b
commit 30ed75a918

View file

@ -1,4 +1,4 @@
FROM quay.io/keycloak/keycloak:25.0.1-0 as builder
FROM quay.io/keycloak/keycloak:25.0.6-0 as builder
# Enable health and metrics support
ENV KC_HEALTH_ENABLED=true
@ -11,9 +11,9 @@ ENV KC_FEATURES=authorization,admin2,docker,web-authn
WORKDIR /opt/keycloak
# for demonstration purposes only, please make sure to use proper certificates in production instead
RUN keytool -genkeypair -storepass password -storetype PKCS12 -keyalg RSA -keysize 2048 -dname "CN=server" -alias server -ext "SAN:c=DNS:localhost,IP:127.0.0.1" -keystore conf/server.keystore
RUN /opt/keycloak/bin/kc.sh build
RUN /opt/keycloak/bin/kc.sh build --health-enabled=true
FROM quay.io/keycloak/keycloak:25.0.1-0
FROM quay.io/keycloak/keycloak:25.0.6-0
COPY --from=builder /opt/keycloak/ /opt/keycloak/
# change these values to point to a running postgres instance