From 6759cb7699f88d952b6c86a336f65a5dd1831f0d Mon Sep 17 00:00:00 2001 From: Chrystian Huot Date: Sat, 21 Nov 2020 14:48:34 -0500 Subject: [PATCH] Add s390x platform to docker build --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 91f1551..5865f57 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 --output type=image,name=docker.io/chuot/rdio-scanner,push=true --platform linux/amd64,linux/arm64/v8,linux/arm/v7,linux/arm/v6,linux/ppc64le --tag 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,linux/s390x --push --tag docker.io/chuot/rdio-scanner:latest .", "start": "node run", "update": "node update" },