mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-26 09:05:10 +00:00
fix: do not install frappe during app install
This commit is contained in:
parent
12d9760658
commit
ffe5bbca91
1 changed files with 7 additions and 1 deletions
|
|
@ -13,4 +13,10 @@ cd ./apps
|
||||||
[ "${APP_BRANCH}" ] && BRANCH="-b ${APP_BRANCH}"
|
[ "${APP_BRANCH}" ] && BRANCH="-b ${APP_BRANCH}"
|
||||||
|
|
||||||
git clone --depth 1 -o upstream ${APP_REPO} ${BRANCH} ${APP_NAME}
|
git clone --depth 1 -o upstream ${APP_REPO} ${BRANCH} ${APP_NAME}
|
||||||
|
|
||||||
|
# Do not install frappe
|
||||||
|
sed -i '/frappe/d' ${APP_NAME}/requirements.txt
|
||||||
|
|
||||||
pip3 install --no-cache-dir -e /home/frappe/frappe-bench/apps/${APP_NAME}
|
pip3 install --no-cache-dir -e /home/frappe/frappe-bench/apps/${APP_NAME}
|
||||||
|
|
||||||
|
cd ${APP_NAME} && git checkout .
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue