mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-23 08:15:09 +00:00
14 lines
407 B
Bash
14 lines
407 B
Bash
export APPS_JSON_BASE64=$(base64 -w 0 apps.json)
|
|
|
|
docker buildx build \
|
|
--platform linux/amd64 \
|
|
--build-arg=FRAPPE_PATH=https://github.com/frappe/frappe \
|
|
--build-arg=FRAPPE_BRANCH=version-15 \
|
|
--build-arg=PYTHON_VERSION=3.11.9 \
|
|
--build-arg=NODE_VERSION=18.20.2 \
|
|
--build-arg=APPS_JSON_BASE64=$APPS_JSON_BASE64 \
|
|
--tag=onesrv/erpnext_de_crm:1.6.0 \
|
|
--file=images/custom/Containerfile .
|
|
|
|
|
|
|