build(dockerfile): remove unnecessary && on apk installation steps

This commit is contained in:
fallenbagel
2024-06-23 23:50:16 +05:00
parent 2c52dbcea3
commit cc80bf2c56

View File

@@ -9,7 +9,7 @@ RUN \
case "${TARGETPLATFORM}" in \ case "${TARGETPLATFORM}" in \
'linux/arm64' | 'linux/arm/v7') \ 'linux/arm64' | 'linux/arm/v7') \
apk update && \ apk update && \
apk add --no-cache python3 make g++ gcc libc6-compat bash && \ apk add --no-cache python3 make g++ gcc libc6-compat bash \
;; \ ;; \
esac esac