sfp-pro (latest)
Published 2025-12-18 06:59:32 +00:00 by flxbl-bot
Installation
docker pull source.flxbl.io/flxbl/sfp-pro:latestsha256:2df041fb1f205f6d7944cdb58c010ba4d8d3b2589ff23e8ea6bc35c5895f3a7d
About this package
Build system for modular development in Salesforce
Image Layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1765152000' |
| RUN /bin/sh -c groupadd --gid 1000 node && useradd --uid 1000 --gid node --shell /bin/bash --create-home node # buildkit |
| ENV NODE_VERSION=22.21.1 |
| RUN /bin/sh -c ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) ARCH='x64' OPENSSL_ARCH='linux-x86_64';; ppc64el) ARCH='ppc64le' OPENSSL_ARCH='linux-ppc64le';; s390x) ARCH='s390x' OPENSSL_ARCH='linux*-s390x';; arm64) ARCH='arm64' OPENSSL_ARCH='linux-aarch64';; armhf) ARCH='armv7l' OPENSSL_ARCH='linux-armv4';; i386) ARCH='x86' OPENSSL_ARCH='linux-elf';; *) echo "unsupported architecture"; exit 1 ;; esac && set -ex && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr xz-utils libatomic1 --no-install-recommends && rm -rf /var/lib/apt/lists/* && export GNUPGHOME="$(mktemp -d)" && for key in 5BE8A3F6C8A5C01D106C0AD820B1A390B168D356 DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 CC68F5A3106FF448322E48ED27F5E38D5B0A215F 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C 108F52B48DB57BB0CC439B2997B01419BD92F80A A363A499291CBBC940DD62E41F10027AF002F8B0 ; do { gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" && gpg --batch --fingerprint "$key"; } || { gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ; done && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc && gpgconf --kill all && rm -rf "$GNUPGHOME" && grep " node-v$NODE_VERSION-linux-$ARCH.tar.xz\$" SHASUMS256.txt | sha256sum -c - && tar -xJf "node-v$NODE_VERSION-linux-$ARCH.tar.xz" -C /usr/local --strip-components=1 --no-same-owner && rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt && find /usr/local/include/node/openssl/archs -mindepth 1 -maxdepth 1 ! -name "$OPENSSL_ARCH" -exec rm -rf {} \; && apt-mark auto '.*' > /dev/null && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && ln -s /usr/local/bin/node /usr/local/bin/nodejs && node --version && npm --version && rm -rf /tmp/* # buildkit |
| ENV YARN_VERSION=1.22.22 |
| RUN /bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr --no-install-recommends && rm -rf /var/lib/apt/lists/* && export GNUPGHOME="$(mktemp -d)" && for key in 6A010C5166006599AA17F08146C2130DFD2497F5 ; do { gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" && gpg --batch --fingerprint "$key"; } || { gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ; done && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz" && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc" && gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && gpgconf --kill all && rm -rf "$GNUPGHOME" && mkdir -p /opt && tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ && ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn && ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg && rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && apt-mark auto '.*' > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; } && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && yarn --version && rm -rf /tmp/* # buildkit |
| COPY docker-entrypoint.sh /usr/local/bin/ # buildkit |
| ENTRYPOINT ["docker-entrypoint.sh"] |
| CMD ["node"] |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN /bin/sh -c ln -sf /bin/bash /bin/sh # buildkit |
| RUN /bin/sh -c echo 'Acquire::Retries "5";' > /etc/apt/apt.conf.d/80-retries && apt-get -qq update && apt-get -qq -y install --no-install-recommends curl wget make ca-certificates gcc g++ procps git && apt-get autoremove --assume-yes && apt-get clean --assume-yes && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c chmod 666 /etc/passwd && mkdir -p /home/sfp && chmod 777 /home/sfp # buildkit |
| ARG SF_CLI_VERSION=2.108.6 |
| ARG BROWSERFORCE_VERSION=4.5.0 |
| ARG SFDMU_VERSION=4.38.0 |
| ARG GIT_COMMIT=63e0c86791a64e8842473aee4c4604a089910558 |
| RUN |4 SF_CLI_VERSION=2.108.6 BROWSERFORCE_VERSION=4.5.0 SFDMU_VERSION=4.38.0 GIT_COMMIT=63e0c86791a64e8842473aee4c4604a089910558 /bin/sh -c apt-get -qq update && apt-get -qq -y install --no-install-recommends jq zip unzip curl wget git tzdata && apt-mark manual jq zip unzip tzdata && which jq zip unzip || echo "CLI tools not installed properly" # buildkit |
| RUN |4 SF_CLI_VERSION=2.108.6 BROWSERFORCE_VERSION=4.5.0 SFDMU_VERSION=4.38.0 GIT_COMMIT=63e0c86791a64e8842473aee4c4604a089910558 /bin/sh -c apt-get -qq update && apt-get -qq -y install --no-install-recommends openjdk-17-jre-headless libgtk2.0-0 libgtk-3-0 libgbm-dev libglib2.0-dev libnotify-dev libnss3 libxss1 libasound2 libxtst6 xauth xvfb fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-khmeros fonts-kacst fonts-freefont-ttf dbus dbus-x11 chromium chromium-driver && apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/* # buildkit |
| ENV XDG_DATA_HOME=/sf_plugins/.local/share XDG_CONFIG_HOME=/sf_plugins/.config XDG_CACHE_HOME=/sf_plugins/.cache JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64/ PUPPETEER_CACHE_DIR=/root/.cache/puppeteer SF_DISABLE_AUTOUPDATE=true SF_DISABLE_TELEMETRY=true SF_USE_GENERIC_UNIX_KEYCHAIN=true SF_USE_PROGRESS_BAR=false SF_DNS_TIMEOUT=60000 SF_SKIP_VERSION_CHECK=true SF_SKIP_NEW_VERSION_CHECK=true |
| RUN |4 SF_CLI_VERSION=2.108.6 BROWSERFORCE_VERSION=4.5.0 SFDMU_VERSION=4.38.0 GIT_COMMIT=63e0c86791a64e8842473aee4c4604a089910558 /bin/sh -c mkdir -p $XDG_DATA_HOME && mkdir -p $XDG_CONFIG_HOME && mkdir -p $XDG_CACHE_HOME && chmod -R 777 sf_plugins # buildkit |
| RUN |4 SF_CLI_VERSION=2.108.6 BROWSERFORCE_VERSION=4.5.0 SFDMU_VERSION=4.38.0 GIT_COMMIT=63e0c86791a64e8842473aee4c4604a089910558 /bin/sh -c npm install --global --omit=dev @salesforce/cli@${SF_CLI_VERSION} && mkdir -p /sf_plugins ${XDG_DATA_HOME} ${XDG_CONFIG_HOME} ${XDG_CACHE_HOME} && chmod -R 777 /sf_plugins && echo 'y' | sf plugins:install sfdx-browserforce-plugin@${BROWSERFORCE_VERSION} && echo 'y' | sf plugins:install sfdmu@${SFDMU_VERSION} && echo 'y' | sf plugins:install @salesforce/plugin-code-analyzer@5.0.0 && yarn cache clean --all && npm cache clean --force # buildkit |
| ARG REGISTRY=ghcr.io |
| ARG SFP_VERSION=50.1.0 |
| ARG GIT_COMMIT=63e0c86791a64e8842473aee4c4604a089910558 |
| ARG IMAGE_TAG=50.1.0 |
| ENV TZ=UTC NODE_ENV=production SF_CONTAINER_MODE=true DOCKER_IMAGE_TAG=50.1.0 |
| RUN |7 SF_CLI_VERSION=2.108.6 BROWSERFORCE_VERSION=4.5.0 SFDMU_VERSION=4.38.0 GIT_COMMIT=63e0c86791a64e8842473aee4c4604a089910558 REGISTRY=ghcr.io SFP_VERSION=50.1.0 IMAGE_TAG=50.1.0 /bin/sh -c apt-get -qq update && apt-get -qq -y install --no-install-recommends jq zip unzip git tzdata && apt-mark manual jq zip unzip tzdata && which jq zip unzip || echo "CLI tools not installed properly" # buildkit |
| RUN |7 SF_CLI_VERSION=2.108.6 BROWSERFORCE_VERSION=4.5.0 SFDMU_VERSION=4.38.0 GIT_COMMIT=63e0c86791a64e8842473aee4c4604a089910558 REGISTRY=ghcr.io SFP_VERSION=50.1.0 IMAGE_TAG=50.1.0 /bin/sh -c groupadd --gid 1001 sfp && useradd --uid 1001 --gid sfp --shell /bin/bash --create-home sfp # buildkit |
| WORKDIR /opt/sfp |
| COPY /build/packages/cli/dist/ /opt/sfp/ # buildkit |
| RUN |7 SF_CLI_VERSION=2.108.6 BROWSERFORCE_VERSION=4.5.0 SFDMU_VERSION=4.38.0 GIT_COMMIT=63e0c86791a64e8842473aee4c4604a089910558 REGISTRY=ghcr.io SFP_VERSION=50.1.0 IMAGE_TAG=50.1.0 /bin/sh -c ln -sf /opt/sfp/sfp-pro-linux-x64 /usr/local/bin/sfp && ln -sf /opt/sfp/sfp-pro-linux-x64 /usr/local/bin/sfops && chmod +x /opt/sfp/sfp-pro-linux-x64 # buildkit |
| WORKDIR /root |
| COPY /opencode/packages/opencode/dist/opencode-linux-x64/bin/opencode /usr/local/bin/opencode # buildkit |
| ENV OPENCODE_BIN_PATH=/usr/local/bin/opencode |
| RUN |7 SF_CLI_VERSION=2.108.6 BROWSERFORCE_VERSION=4.5.0 SFDMU_VERSION=4.38.0 GIT_COMMIT=63e0c86791a64e8842473aee4c4604a089910558 REGISTRY=ghcr.io SFP_VERSION=50.1.0 IMAGE_TAG=50.1.0 /bin/sh -c mkdir -p /root/.config/opencode/node_modules/@opencode-ai # buildkit |
| COPY /opencode/packages/plugin/ /root/.config/opencode/node_modules/@opencode-ai/plugin/ # buildkit |
| ENV NODE_NO_WARNINGS=1 |
| ENTRYPOINT [] |
| CMD ["/bin/sh"] |
| LABEL org.opencontainers.image.description=sfp is a build system for modular development in Salesforce. org.opencontainers.image.licenses=BSL-1.1 org.opencontainers.image.url=https://github.com/flxbl-io/sfp-pro org.opencontainers.image.documentation=https://docs.flxbl.io/sfp-pro org.opencontainers.image.revision=63e0c86791a64e8842473aee4c4604a089910558 org.opencontainers.image.vendor=Flxbl org.opencontainers.image.source=https://github.com/flxbl-io/sfp-pro org.opencontainers.image.title=Flxbl sfp pro docker image - NOV 25 |
Labels
| Key | Value |
|---|---|
| io.sfp.version | 50.1.0 |
| org.opencontainers.image.created | 2025-12-18T06:23:18.573Z |
| org.opencontainers.image.description | Build system for modular development in Salesforce |
| org.opencontainers.image.documentation | https://docs.flxbl.io/sfp-pro |
| org.opencontainers.image.licenses | NOASSERTION |
| org.opencontainers.image.revision | 63e0c86791a64e8842473aee4c4604a089910558 |
| org.opencontainers.image.source | https://github.com/flxbl-io/sfp-pro |
| org.opencontainers.image.title | sfp-pro |
| org.opencontainers.image.url | https://github.com/flxbl-io/sfp-pro |
| org.opencontainers.image.vendor | flxbl |
| org.opencontainers.image.version | 50.1.0-20328008044 |
Details
2025-12-18 06:59:32 +00:00
Versions (30)
View all
Container
739
OCI / Docker
linux/amd64
NOASSERTION
1.1 GiB
latest
2025-12-18
50.1.0-20328008044
2025-12-18
49.9.0-20094222703
2025-12-10
49.8.0-20056941101
2025-12-09
49.7.1-18814842190
2025-10-27