Skip to content

Commit 1567c0e

Browse files
committed
Attempt to address buildx arm64 push bug
1 parent 4fb33c6 commit 1567c0e

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

.ci-dockerfiles/arm64-unknown-linux-alpine3.21-builder/build-and-push.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ DOCKERFILE_DIR="$(dirname "$0")"
1313
BUILDER="arm64-builder-$(date +%s)"
1414

1515
docker buildx create --use --name "${BUILDER}"
16-
docker buildx build --platform linux/arm64 --pull --push -t "${NAME}:${TODAY}" "${DOCKERFILE_DIR}"
16+
docker buildx build --provenance false --sbom false --platform linux/arm64 --pull --push -t "${NAME}:${TODAY}" "${DOCKERFILE_DIR}"
1717
docker buildx rm "${BUILDER}"

.ci-dockerfiles/arm64-unknown-linux-ubuntu24.04-builder/build-and-push.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ DOCKERFILE_DIR="$(dirname "$0")"
1313
BUILDER="arm64-builder-$(date +%s)"
1414

1515
docker buildx create --use --name "${BUILDER}"
16-
docker buildx build --platform linux/arm64 --pull --push -t "${NAME}:${TODAY}" "${DOCKERFILE_DIR}"
16+
docker buildx build --provenance false --sbom false --platform linux/arm64 --pull --push -t "${NAME}:${TODAY}" "${DOCKERFILE_DIR}"
1717
docker buildx rm "${BUILDER}"

.dockerfiles/latest/arm64-unknown-linux-musl/build-and-push.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ NAME="ghcr.io/ponylang/ponyc:alpine-arm64"
1313
BUILDER="arm64-builder-$(date +%s)"
1414

1515
docker buildx create --use --name "${BUILDER}"
16-
docker buildx build --platform linux/arm64 --pull --push -t "${NAME}" "${DOCKERFILE_DIR}"
16+
docker buildx build --provenance false --sbom false --platform linux/arm64 --pull --push -t "${NAME}" "${DOCKERFILE_DIR}"
1717
docker buildx rm "${BUILDER}"

.github/workflows/arm-builder-test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ jobs:
1919
- name: Set up Docker Buildx
2020
# v3.10.0
2121
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2
22-
with:
23-
version: v0.23.0
2422
- name: Login to GitHub Container Registry
2523
# v2.2.0
2624
uses: docker/login-action@5139682d94efc37792e6b54386b5b470a68a4737

0 commit comments

Comments
 (0)