From 07078cd43de5379c272bf2b331877643560cb5a3 Mon Sep 17 00:00:00 2001 From: Al Majumdar <88921269+restlessronin@users.noreply.github.com> Date: Sat, 2 Apr 2022 22:29:55 +0530 Subject: [PATCH] remove env toggle --- docker-bake.hcl | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 93ca5067..025694d0 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -13,17 +13,12 @@ variable "ERPNEXT_VERSION" { default = "develop" } -variable "ARCH_PLATFORMS" { - default = "local" -} - # Bench image target "bench" { context = "images/bench" target = "bench" tags = ["frappe/bench:latest"] - platforms = "${ARCH_PLATFORMS}" } target "bench-test" { @@ -63,7 +58,6 @@ target "default-args" { # If `ERPNEXT_VERSION` variable contains "v12" use Python 3.7. Else — 3.9. PYTHON_VERSION = can(regex("v12", "${ERPNEXT_VERSION}")) ? "3.7" : "3.9" } - platforms = "${ARCH_PLATFORMS}" } target "frappe-worker" {