oci-images/keycloak/Containerfile
christian 024f28b7e1
All checks were successful
ci/woodpecker/push/keycloak Pipeline was successful
ci/woodpecker/cron/keycloak Pipeline was successful
Fix wrong path for theme
2024-07-27 01:48:44 +02:00

16 lines
354 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 themes/ /opt/keycloak/themes/
# Runtime options to be set in compose directly.
ENTRYPOINT ["/opt/keycloak/bin/kc.sh"]