Skip to content

Commit 2d9313b

Browse files
committed
fix: alpine downloads musl binaries, remove v2 case input
1 parent 045cd93 commit 2d9313b

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/actions/dockerfiles/Dockerfile.alpine-binary

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ ARG TARGETVARIANT
1010
ARG REPO
1111

1212
RUN case ${TARGETPLATFORM} in \
13-
linux/amd64/v2) BIN_ARCH=linux-glibc-x64-v2 ;; \
14-
linux/amd64*) BIN_ARCH=linux-glibc-x64 ;; \
15-
linux/arm64*) BIN_ARCH=linux-glibc-arm64 ;; \
16-
linux/arm/v7) BIN_ARCH=linux-glibc-armv7 ;; \
13+
linux/amd64*) BIN_ARCH=linux-musl-x64 ;; \
14+
linux/arm64*) BIN_ARCH=linux-musl-arm64 ;; \
15+
linux/arm/v7) BIN_ARCH=linux-musl-armv7 ;; \
1716
*) exit 1 ;; \
1817
esac \
1918
&& echo "TARGETPLATFORM: $TARGETPLATFORM" \

.github/actions/dockerfiles/Dockerfile.debian-binary

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ ARG TARGETVARIANT
1010
ARG REPO
1111

1212
RUN case ${TARGETPLATFORM} in \
13-
linux/amd64/v2) BIN_ARCH=linux-glibc-x64-v2 ;; \
1413
linux/amd64*) BIN_ARCH=linux-glibc-x64 ;; \
1514
linux/arm64*) BIN_ARCH=linux-glibc-arm64 ;; \
1615
linux/arm/v7) BIN_ARCH=linux-glibc-armv7 ;; \

0 commit comments

Comments
 (0)