From 6d1b085e7de7a10ea8b68cbdccfae104d095f84b Mon Sep 17 00:00:00 2001 From: steffeydev Date: Sat, 11 Jan 2025 18:52:48 +0000 Subject: [PATCH] Update [RFC] Development & Deployment Process for Brotherton --- ...C%5D-Development-%26-Deployment-Process-for-Brotherton.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/%5BRFC%5D-Development-%26-Deployment-Process-for-Brotherton.md b/%5BRFC%5D-Development-%26-Deployment-Process-for-Brotherton.md index ec46f6e..24c58e8 100644 --- a/%5BRFC%5D-Development-%26-Deployment-Process-for-Brotherton.md +++ b/%5BRFC%5D-Development-%26-Deployment-Process-for-Brotherton.md @@ -13,6 +13,7 @@ Before we switch to this new process, we should backup the prod database and app ### Building custom images +Make sure version is the same for erpnext, hrms, and frappe ```sh export APPS_JSON='[ { @@ -21,14 +22,14 @@ export APPS_JSON='[ }, { "url": "https://github.com/frappe/hrms", - "branch": "version-15" + "branch": "v15.15.0" } ]' export APPS_JSON_BASE64=$(echo ${APPS_JSON} | base64 -w 0) export TAG=1.0.0 # Change this docker build --platform=linux/amd64 \ --build-arg=FRAPPE_PATH=https://github.com/frappe/frappe \ - --build-arg=FRAPPE_BRANCH=version-15 \ + --build-arg=FRAPPE_BRANCH=v15.15.0 \ --build-arg=PYTHON_VERSION=3.11.6 \ --build-arg=NODE_VERSION=18.18.2 \ --build-arg=APPS_JSON_BASE64=$APPS_JSON_BASE64 \