From 6a3b97302c525561d80d0a2f22fda41a281d5166 Mon Sep 17 00:00:00 2001 From: Revant Nandgaonkar Date: Wed, 25 Jan 2023 17:27:43 +0530 Subject: [PATCH] docs: fix kaniko build-arg (#1058) --- docs/custom-apps.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/custom-apps.md b/docs/custom-apps.md index e00696cd..57bc7331 100644 --- a/docs/custom-apps.md +++ b/docs/custom-apps.md @@ -90,8 +90,10 @@ podman run --rm -it \ --build-arg=FRAPPE_BRANCH=version-14 \ --build-arg=PYTHON_VERSION=3.10.5 \ --build-arg=NODE_VERSION=16.18.0 \ - --build-arg=APPS_JSON=$APPS_JSON \ - --destination=ghcr.io/user/repo/custom:1.0.0 + --build-arg=APPS_JSON_BASE64=$APPS_JSON_BASE64 \ + --cache=true \ + --destination=ghcr.io/user/repo/custom:1.0.0 \ + --destination=ghcr.io/user/repo/custom:latest ``` More about [kaniko](https://github.com/GoogleContainerTools/kaniko)