Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.

Commit b0a0e14

Browse files
authored
fix: get arm64 verson of buildx for arm64 image (#8)
1 parent 1a372ed commit b0a0e14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/Dockerfile.arm64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ENV DOCKER_HOST=unix:///var/run/docker.sock
1515

1616
RUN apk --update add --virtual .build-deps curl && \
1717
mkdir -p /usr/lib/docker/cli-plugins/ && \
18-
curl -SsL -o /usr/lib/docker/cli-plugins/docker-buildx "https://github.com/docker/buildx/releases/download/v${BUILDX_VERSION}/buildx-v${BUILDX_VERSION}.linux-amd64" && \
18+
curl -SsL -o /usr/lib/docker/cli-plugins/docker-buildx "https://github.com/docker/buildx/releases/download/v${BUILDX_VERSION}/buildx-v${BUILDX_VERSION}.linux-arm64" && \
1919
chmod 755 /usr/lib/docker/cli-plugins/docker-buildx && \
2020
apk del .build-deps && \
2121
rm -rf /var/cache/apk/* && \

0 commit comments

Comments
 (0)