File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
.github/actions/dockerfiles Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,9 @@ ARG TARGETVARIANT
10
10
ARG REPO
11
11
12
12
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 ;; \
17
16
*) exit 1 ;; \
18
17
esac \
19
18
&& echo "TARGETPLATFORM: $TARGETPLATFORM" \
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ ARG TARGETVARIANT
10
10
ARG REPO
11
11
12
12
RUN case ${TARGETPLATFORM} in \
13
- linux/amd64/v2) BIN_ARCH=linux-glibc-x64-v2 ;; \
14
13
linux/amd64*) BIN_ARCH=linux-glibc-x64 ;; \
15
14
linux/arm64*) BIN_ARCH=linux-glibc-arm64 ;; \
16
15
linux/arm/v7) BIN_ARCH=linux-glibc-armv7 ;; \
You can’t perform that action at this time.
0 commit comments