Fix docker commands to work on ARM systems like macOS M1 (#1408)

This commit is contained in:
Michael Telatynski
2024-01-02 17:39:20 +00:00
committed by GitHub
parent 5f722691e7
commit 29550847f9
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -49,7 +49,7 @@
"build": "yarn run build:ts && yarn run build:res && electron-builder",
"build:ts": "tsc",
"build:res": "ts-node scripts/copy-res.ts",
"docker:setup": "docker build -t element-desktop-dockerbuild dockerbuild",
"docker:setup": "docker build --platform linux/amd64 -t element-desktop-dockerbuild dockerbuild",
"docker:build:native": "scripts/in-docker.sh yarn run hak",
"docker:build": "scripts/in-docker.sh yarn run build",
"docker:install": "scripts/in-docker.sh yarn install",