Skip to content

Commit 9345156

Browse files
authored
Ensure we copy plugins.yaml for AIO and Cloud Foundry (#4841)
1 parent 26f3286 commit 9345156

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

deploy/Dockerfile.all-in-one

+3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ COPY --chown=jetstream:users --from=jetstream-builder /home/stratos/config.prope
3939
# User Invite templates
4040
COPY --chown=jetstream:users --from=jetstream-builder /home/stratos/src/jetstream/templates /srv/templates
4141

42+
# Plugins.yaml configuration
43+
COPY --chown=jetstream:users --from=jetstream-builder /home/stratos/src/jetstream/plugins.yaml /srv/plugins.yaml
44+
4245
# Enable persistence features if canary build flag is set
4346
RUN if [ "x$CANARY_BUILD" != "x" ] ; then printf "\nFORCE_ENABLE_PERSISTENCE_FEATURES=true\n" >> /srv/config.properties ; fi
4447

deploy/cloud-foundry/build.sh

+3
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ cp src/jetstream/jetstream .
6969
# Copy the user invite templates
7070
cp -R src/jetstream/templates ./templates
7171

72+
# Copy plugins.yaml
73+
cp src/jetstream/plugins.yaml .
74+
7275
# Back-end serves static resources from ui folder not dist
7376
mv dist ui
7477

0 commit comments

Comments
 (0)