Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade to SFDX 7.203.6 and CCI 3.76 #5

Merged
merged 1 commit into from
Jun 4, 2023
Merged
Show file tree
Hide file tree
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
14 changes: 8 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ FROM salesforce/salesforcedx:7.172.0-full
ENV SHELL /bin/bash
ENV DEBIAN_FRONTEND=noninteractive

ARG SALESFORCE_CLI_VERSION=7.172.0
ARG SF_CLI_VERSION=1.49.0
ARG CUMULUSCI_VERSION=3.66.0
ARG SALESFORCE_CLI_VERSION=7.182.1
ARG SF_CLI_VERSION=1.59.0
ARG CUMULUSCI_VERSION=3.70.0

# Basic
RUN apt update
Expand All @@ -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 @@ -41,7 +42,8 @@ RUN echo y | sfdx plugins:install [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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "salesforcedx-cci",
"description": "Docker image with Salesforce DX CLI, jq and Cumulus CI",
"version": "1.172.0_3.66.0",
"version": "7.182.1_3.70.0",
"author": "Rupert Barrow",
"license": "BSD-3-Clause",
"bugs": "https://github.com/RupertBarrow/salesforcedx-cci-Docker/issues",
Expand Down