From cc80bf2c5649895154decb5b07b964f5ba18bb10 Mon Sep 17 00:00:00 2001 From: fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Sun, 23 Jun 2024 23:50:16 +0500 Subject: [PATCH] build(dockerfile): remove unnecessary `&&` on apk installation steps --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cabac1f4..33d7a201 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN \ case "${TARGETPLATFORM}" in \ 'linux/arm64' | 'linux/arm/v7') \ 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