oci-images/keycloak/Containerfile
christian edcb2d2824
All checks were successful
ci/woodpecker/push/keycloak Pipeline was successful
Keycloak with a custom theme
2024-07-27 01:21:07 +02:00

16 lines
352 B
Docker

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