Skip to content

Commit

Permalink
Merge branch 'main' into 4-feat-upgrade-to-sfdx-72036-and-cci-376
Browse files Browse the repository at this point in the history
  • Loading branch information
RupertBarrow authored Jun 4, 2023
2 parents 65e4c54 + 45541ee commit c6028d3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ RUN echo y | apt install software-properties-common
# Get Git >= 2.18 : actions/checkout@v2 says "To create a local Git repository instead, add Git 2.18 or higher to the PATH"
RUN add-apt-repository -y ppa:git-core/ppa
RUN apt-get update
RUN apt-get install git -y
RUN apt-get install -y --no-install-recommends git \
&& rm -rf /var/lib/apt/lists/*

# Install Python 3.10
RUN add-apt-repository ppa:deadsnakes/ppa
Expand All @@ -25,7 +26,7 @@ RUN echo y | apt install python3.10
RUN echo y | apt install python3.10-distutils
RUN curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10

# Install Cumulus CI 3.66.0
# Install Cumulus CI
RUN pip3 install --no-cache-dir cumulusci==${CUMULUSCI_VERSION}

# Install SFDX plugins
Expand All @@ -42,7 +43,8 @@ RUN echo y | sfdx plugins:install @dxatscale/[email protected]
# apk del nodejs-npm
RUN set -x && \
(curl -sL https://deb.nodesource.com/setup_16.x | bash) && \
apt-get install nodejs && \
apt-get install --no-install-recommends nodejs && \
rm -rf /var/lib/apt/lists/* && \
npm install -g prettier@${PRETTIER_VERSION} && \
npm cache clean --force

Expand Down

0 comments on commit c6028d3

Please sign in to comment.