From 4fbed0acb0f23f450f580c4b64229f0e1fe723cc Mon Sep 17 00:00:00 2001 From: Chrystian Huot Date: Sun, 4 Apr 2021 17:02:34 -0400 Subject: [PATCH] Remove platform s390x from docker builds --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a8dfeb4..f8c286d 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "private": true, "scripts": { "build": "docker build --tag chuot/rdio-scanner:latest .", - "buildx": "docker buildx build --cache-from type=local,src=dist --cache-to type=local,dest=dist --platform linux/amd64,linux/arm64/v8,linux/arm/v7,linux/arm/v6,linux/ppc64le,linux/s390x --push --tag ${REGISTRY:-docker.io}/chuot/rdio-scanner:latest .", + "buildx": "docker buildx build --cache-from type=local,src=dist --cache-to type=local,dest=dist --platform linux/amd64,linux/arm64/v8,linux/arm/v7,linux/arm/v6,linux/ppc64le --push --tag ${REGISTRY:-docker.io}/chuot/rdio-scanner:latest .", "start": "node run", "update": "node update" },