Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

feat: use node 18 LTS instead of the latest 20.x version #1421

Merged
merged 2 commits into from
Oct 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions dockerfiles/sfpowerscripts.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG SF_CLI_VERSION=2.10.2
ARG BROWSERFORCE_VERSION=0.0.3
ARG SFDMU_VERSION=4.18.2
ARG GIT_COMMIT
ARG NODE_MAJOR=20
ARG NODE_MAJOR=18

LABEL org.opencontainers.image.description "sfpowerscripts is a build system for modular development in Salesforce."
LABEL org.opencontainers.image.licenses "MIT"
Expand Down Expand Up @@ -106,7 +106,8 @@ RUN mkdir -p $XDG_DATA_HOME && \
RUN echo 'y' | sf plugins:install @dxatscale/browserforce@${BROWSERFORCE_VERSION} \
&& echo 'y' | sf plugins:install sfdmu@${SFDMU_VERSION} \
&& echo 'y' | sf plugins:install @salesforce/plugin-packaging@1.25.0 \
&& yarn cache clean --all
&& yarn cache clean --all \
&& rm -rf /sf_plugins/.cache/sf

# Set some sane behaviour in container
ENV SF_CONTAINER_MODE=true
Expand Down