Compare commits

...

1 Commits

Author SHA1 Message Date
sct
5c8043c790 build: do not link python for arm 2023-11-05 10:50:49 +00:00

View File

@@ -8,8 +8,7 @@ ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
RUN \
case "${TARGETPLATFORM}" in \
'linux/arm64' | 'linux/arm/v7') \
apk add --no-cache python3 make g++ && \
ln -s /usr/bin/python3 /usr/bin/python \
apk add --no-cache python3 make g++ \
;; \
esac