From 4e5f84fa29a1e0bd1cbed3a57e36f5766421260c Mon Sep 17 00:00:00 2001 From: RocketQuack <202538874+Rocket-Quack@users.noreply.github.com> Date: Wed, 15 Apr 2026 13:52:31 +0200 Subject: [PATCH] chore: remove comments about why BuildKit is being used to parse apps.json --- images/custom/Containerfile | 4 ---- images/layered/Containerfile | 4 ---- 2 files changed, 8 deletions(-) diff --git a/images/custom/Containerfile b/images/custom/Containerfile index 8a4a58b2..c7519e84 100644 --- a/images/custom/Containerfile +++ b/images/custom/Containerfile @@ -113,10 +113,6 @@ RUN apt-get update \ libbz2-dev \ && rm -rf /var/lib/apt/lists/* -# apps.json is passed as a BuildKit secret so that private repo tokens -# are never baked into any image layer. The secret is mounted only for -# this RUN step and is not present in the final image. - USER frappe ARG FRAPPE_BRANCH=version-16 diff --git a/images/layered/Containerfile b/images/layered/Containerfile index 117ab1ab..de5e835d 100644 --- a/images/layered/Containerfile +++ b/images/layered/Containerfile @@ -5,10 +5,6 @@ FROM frappe/build:${FRAPPE_BRANCH} AS builder ARG FRAPPE_BRANCH=version-16 ARG FRAPPE_PATH=https://github.com/frappe/frappe -# apps.json is passed as a BuildKit secret so that private repo tokens -# are never baked into any image layer. The secret is mounted only for -# this RUN step and is not present in the final image. - USER frappe RUN --mount=type=secret,id=apps_json,target=/opt/frappe/apps.json,uid=1000,gid=1000 \