diff --git a/deploy/Dockerfile.all-in-one b/deploy/Dockerfile.all-in-one index 44147ef5c8..6cf57b4d5c 100644 --- a/deploy/Dockerfile.all-in-one +++ b/deploy/Dockerfile.all-in-one @@ -39,6 +39,9 @@ COPY --chown=jetstream:users --from=jetstream-builder /home/stratos/config.prope # User Invite templates COPY --chown=jetstream:users --from=jetstream-builder /home/stratos/src/jetstream/templates /srv/templates +# Plugins.yaml configuration +COPY --chown=jetstream:users --from=jetstream-builder /home/stratos/src/jetstream/plugins.yaml /srv/plugins.yaml + # Enable persistence features if canary build flag is set RUN if [ "x$CANARY_BUILD" != "x" ] ; then printf "\nFORCE_ENABLE_PERSISTENCE_FEATURES=true\n" >> /srv/config.properties ; fi diff --git a/deploy/cloud-foundry/build.sh b/deploy/cloud-foundry/build.sh index 3d89979b33..8e047f3016 100755 --- a/deploy/cloud-foundry/build.sh +++ b/deploy/cloud-foundry/build.sh @@ -69,6 +69,9 @@ cp src/jetstream/jetstream . # Copy the user invite templates cp -R src/jetstream/templates ./templates +# Copy plugins.yaml +cp src/jetstream/plugins.yaml . + # Back-end serves static resources from ui folder not dist mv dist ui