From a2ae9bcc78853c9355f8ffabcca5cdae07a9744c Mon Sep 17 00:00:00 2001 From: RupertBarrow Date: Sun, 4 Jun 2023 20:22:01 +0200 Subject: [PATCH] upgrade --- Dockerfile | 14 ++++++++------ package.json | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8c48dd5..b1d8515 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -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 @@ -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 @@ -41,7 +42,8 @@ RUN echo y | sfdx plugins:install shane-sfdx-plugins@4.43.0 # 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 diff --git a/package.json b/package.json index 6dd070c..8f2ab9f 100644 --- a/package.json +++ b/package.json @@ -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",