19 lines
479 B
Text
19 lines
479 B
Text
|
FROM quay.io/keycloak/keycloak:25.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:latest
|
||
|
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"]
|