diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 852a3261d2b27fb90332a54fc75577cbb411beca..36c34f8a4f5714c511d9763c15e1a5e7213b2852 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -4,14 +4,23 @@
     "version": "2.0.0",
     "tasks": [
         {
-            "label": "docker build",
+            "label": "build",
             "command": "docker",
             "args": [
                 "build",
-                "-f",
-                "${file}",
-                "."
-            ]
-        }
-    ]
+                ".",
+            ],
+        },
+        {
+            "label": "buildx build",
+            "command": "docker",
+            "args": [
+                "buildx",
+                "build",
+                "--platform",
+                "linux/arm64,linux/amd64",
+                ".",
+            ],
+        },
+    ],
 }