1a8cb6176e
* fixes the docker build, by using the theme * create to constant as it's not passed keycloak 14
11 lines
257 B
Docker
11 lines
257 B
Docker
FROM maven:3.6.0-jdk-11-slim as builder
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN mvn -f /app/keycloak-theme/pom.xml install
|
|
|
|
FROM quay.io/keycloak/keycloak:14.0.0
|
|
COPY --from=builder /app/keycloak-theme/target/classes /opt/jboss/keycloak/themes/keycloak.v2
|
|
|
|
EXPOSE 8080
|