-
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.
Merge branch 'release' into lagoon-waku
- Loading branch information
Showing
141 changed files
with
5,792 additions
and
4,159 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,7 +1,7 @@ | ||
# ==================================================================================================== | ||
# BUILDER IMAGE | ||
# ==================================================================================================== | ||
FROM uselagoon/node-18-builder as node | ||
FROM uselagoon/node-20-builder as node | ||
FROM uselagoon/php-8.3-cli-drupal as builder | ||
|
||
COPY --from=node /usr/local/lib/node_modules /usr/local/lib/node_modules | ||
|
@@ -100,7 +100,7 @@ ENV WEBROOT=web | |
# PREVIEW IMAGE | ||
# ==================================================================================================== | ||
|
||
FROM uselagoon/node-18 as preview | ||
FROM uselagoon/node-20 as preview | ||
|
||
RUN npm install -g [email protected] | ||
COPY --from=builder /tmp/.deploy/preview /app | ||
|
@@ -110,12 +110,17 @@ CMD pnpm start | |
# PUBLISHER IMAGE | ||
# ==================================================================================================== | ||
|
||
FROM uselagoon/node-18 as publisher | ||
FROM uselagoon/node-20 as publisher | ||
|
||
RUN apk add --no-cache sqlite curl github-cli | ||
|
||
RUN npm install -g [email protected] | ||
|
||
COPY --from=builder /tmp/.deploy/publisher /app | ||
|
||
# Decap config. | ||
ENV VITE_DECAP_REPO='AmazeeLabs/silverback-template' | ||
ARG LAGOON_GIT_BRANCH | ||
ENV VITE_DECAP_BRANCH="$LAGOON_GIT_BRANCH" | ||
|
||
CMD pnpm publisher |
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
Oops, something went wrong.