infra/containers/keycloak/Containerfile
Renovate Bot bb8f36e8a9
All checks were successful
/ build-keycloak (push) Successful in 47s
chore(deps): update quay.io/keycloak/keycloak docker tag to v26
2024-10-04 16:59:47 +00:00

18 lines
477 B
Docker

FROM quay.io/keycloak/keycloak:26.0 as builder
# Enable health and metrics support
ENV KC_HEALTH_ENABLED=true
ENV KC_METRICS_ENABLED=true
# Configure a database vendor
ENV KC_DB=postgres
WORKDIR /opt/keycloak
RUN /opt/keycloak/bin/kc.sh build
FROM quay.io/keycloak/keycloak:26.0
COPY --from=builder /opt/keycloak/ /opt/keycloak/
ADD themes/jankysolutions /opt/keycloak/themes/jankysolutions
ENTRYPOINT ["/opt/keycloak/bin/kc.sh"]
CMD ["start", "--cache-stack=kubernetes"]