oci-images/keycloak/Containerfile
June 819b1dffd2
All checks were successful
ci/woodpecker/push/keycloak Pipeline was successful
add attribute-endpoints-provider plugin to keycloak
2026-04-05 16:50:37 +02:00

16 lines
448 B
Docker

ARG TAG=latest
FROM quay.io/keycloak/keycloak:${TAG} as builder
ENV KC_DB=postgres
WORKDIR /opt/keycloak
ADD attribute-endpoints-provider.jar /opt/keycloak/providers/attribute-endpoints-provider.jar
RUN /opt/keycloak/bin/kc.sh build
FROM quay.io/keycloak/keycloak:${TAG}
COPY --from=builder /opt/keycloak/ /opt/keycloak/
ADD themes/ /opt/keycloak/themes/
# Runtime options to be set in compose directly.
ENTRYPOINT ["/opt/keycloak/bin/kc.sh"]