Skip to content

Commit 427ea71

Browse files
author
Gary Miller
committed
fails on linux/ppc64le & linux/s390x, removing
1 parent 7326b63 commit 427ea71

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

doc/docker.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ export VERSION=$(cat packages/runtime/package.json | jq -r '.version')
132132
# generate a person access token at https://app.docker.com/accounts/millergarym/settings/personal-access-tokens
133133
# assuming DHPAT contains your PAT
134134
echo $DHPAT | docker login -u <personal username> --password-stdin
135-
docker buildx bake --push
135+
cd docker
136+
docker buildx bake --allow=fs.read=.. --push
136137
```
137138

138139
`git describe --tag --dirty` produces a version string based on the nearest git tag, appending commit info and a `-dirty` suffix if there are uncommitted changes.

docker/docker-compose.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ services:
1616
x-bake:
1717
# only platforms supported by the base image (node:24-slim) are included here
1818
# https://hub.docker.com/_/node/tags?name=24-slim
19-
platforms: [linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x]
19+
platforms:
20+
- linux/amd64
21+
- linux/arm64/v8
22+
# # fails on pnpm install
23+
# - linux/ppc64le
24+
# - linux/s390x
2025

2126
target: ${TARGET:-dist}
2227
volumes:

0 commit comments

Comments
 (0)