From 0e821a212ea6d72bf4bfb2210526d2c8c5d2000c Mon Sep 17 00:00:00 2001 From: Al Majumdar <88921269+restlessronin@users.noreply.github.com> Date: Thu, 24 Mar 2022 20:33:06 +0530 Subject: [PATCH] rebased to latest main --- docker-bake.hcl | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/docker-bake.hcl b/docker-bake.hcl index dffa782a..132f5060 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -73,6 +73,10 @@ target "frappe-worker" { context = "images/worker" target = "frappe" tags = tag("frappe-worker", "${FRAPPE_VERSION}") + platforms = [ + "linux/amd64", + "linux/arm64" + ] } target "erpnext-worker" { @@ -80,6 +84,10 @@ target "erpnext-worker" { context = "images/worker" target = "erpnext" tags = tag("erpnext-worker", "${ERPNEXT_VERSION}") + platforms = [ + "linux/amd64", + "linux/arm64" + ] } target "frappe-nginx" { @@ -87,6 +95,10 @@ target "frappe-nginx" { context = "images/nginx" target = "frappe" tags = tag("frappe-nginx", "${FRAPPE_VERSION}") + platforms = [ + "linux/amd64", + "linux/arm64" + ] } target "assets-builder" { @@ -94,6 +106,10 @@ target "assets-builder" { context = "images/nginx" target = "assets_builder" tags = tag("assets-builder", "${FRAPPE_VERSION}") + platforms = [ + "linux/amd64", + "linux/arm64" + ] } target "erpnext-nginx" { @@ -101,10 +117,18 @@ target "erpnext-nginx" { context = "images/nginx" target = "erpnext" tags = tag("erpnext-nginx", "${ERPNEXT_VERSION}") + platforms = [ + "linux/amd64", + "linux/arm64" + ] } target "frappe-socketio" { inherits = ["default-args"] context = "images/socketio" tags = tag("frappe-socketio", "${FRAPPE_VERSION}") + platforms = [ + "linux/amd64", + "linux/arm64" + ] }