We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed7966b commit 405745aCopy full SHA for 405745a
.dockerignore
@@ -0,0 +1,5 @@
1
+node_modules
2
+dist
3
+dist_keycloak
4
+# IMPORTANT: Make sure `.gitignore` is **not** listed
5
+# in your .dockerignore file
Dockerfile
@@ -0,0 +1,10 @@
+FROM node:20-alpine AS build
+RUN apk update && \
+ apk add --no-cache openjdk17 maven
+WORKDIR /app
+COPY . .
6
+RUN npm ci
7
+RUN npm run build-keycloak-theme
8
+
9
+FROM scratch
10
+COPY --from=build /app/dist_keycloak/keycloak-theme-for-kc-all-other-versions.jar .
0 commit comments