feat: apps for apoc

This commit is contained in:
Strix 2023-10-20 17:32:45 +02:00
parent 41a9a425b7
commit 26590a38a7
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
8 changed files with 63 additions and 4 deletions

View file

@ -0,0 +1,13 @@
FROM quay.io/keycloak/keycloak:latest as builder
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/
ENV KC_DB=postgres
ENTRYPOINT ["/opt/keycloak/bin/kc.sh"]