From e401be4cb07403b83befe93f6fb8b81980e5c5a6 Mon Sep 17 00:00:00 2001 From: Revant Nandgaonkar Date: Mon, 26 Jun 2023 14:05:25 +0530 Subject: [PATCH] docs: update python and nodejs version (#1159) python image 3.10.12 onwards gets built on bookworm --- docs/custom-apps.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/custom-apps.md b/docs/custom-apps.md index 8646e86d..22b19dc5 100644 --- a/docs/custom-apps.md +++ b/docs/custom-apps.md @@ -45,8 +45,8 @@ Note: buildah build \ --build-arg=FRAPPE_PATH=https://github.com/frappe/frappe \ --build-arg=FRAPPE_BRANCH=version-14 \ - --build-arg=PYTHON_VERSION=3.10.5 \ - --build-arg=NODE_VERSION=16.18.0 \ + --build-arg=PYTHON_VERSION=3.10.12 \ + --build-arg=NODE_VERSION=16.20.1 \ --build-arg=APPS_JSON_BASE64=$APPS_JSON_BASE64 \ --tag=ghcr.io/user/repo/custom:1.0.0 \ --file=images/custom/Containerfile . @@ -88,8 +88,8 @@ podman run --rm -it \ --context=git://github.com/frappe/frappe_docker \ --build-arg=FRAPPE_PATH=https://github.com/frappe/frappe \ --build-arg=FRAPPE_BRANCH=version-14 \ - --build-arg=PYTHON_VERSION=3.10.5 \ - --build-arg=NODE_VERSION=16.18.0 \ + --build-arg=PYTHON_VERSION=3.10.12 \ + --build-arg=NODE_VERSION=16.20.1 \ --build-arg=APPS_JSON_BASE64=$APPS_JSON_BASE64 \ --cache=true \ --destination=ghcr.io/user/repo/custom:1.0.0 \