forked from AOT-Technologies/forms-flow-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Package Keylock custom data (AOT-Technologies#2104)
* FWF:3372 [feature] Added base code * FWF:3372 [feature] Modified start-sh file
- Loading branch information
1 parent
dbe18b4
commit a0c29f7
Showing
4 changed files
with
58 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,17 @@ | ||
FROM formsflow/forms-flow-idm-theme:v7.0 | ||
|
||
RUN mkdir -p /opt/bitnami/keycloak/themes/formsflow | ||
# Remove any existing theme files | ||
RUN rm -rf /opt/bitnami/keycloak/themes/formsflow/* | ||
# Copy the new theme files | ||
COPY themes/formsflow /opt/bitnami/keycloak/themes/formsflow | ||
# Copy the import files | ||
COPY imports /opt/bitnami/keycloak/data/import | ||
# FROM maven:3.8.6-jdk-11 AS builder | ||
|
||
# WORKDIR /build | ||
|
||
# COPY idp-selector/pom.xml idp-selector/ | ||
# COPY idp-selector/src idp-selector/src/ | ||
|
||
# RUN mvn -f idp-selector/pom.xml clean package | ||
|
||
FROM alpine:latest | ||
|
||
WORKDIR /custom | ||
|
||
# COPY --from=builder /build/idp-selector/target/*.jar /custom/providers/ | ||
COPY ./themes /custom/themes | ||
COPY ./imports /custom/imports | ||
COPY ./start-keycloak.sh /custom/start-keycloak.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters