From dfaf51431f8ad94e67d27b44a3257b84c2c98847 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 18 Jun 2026 21:13:17 +0100 Subject: [PATCH] squishes comitium RUN commands into one to reduce image size --- comitium/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comitium/Dockerfile b/comitium/Dockerfile index 3add3f7..d0c35f4 100644 --- a/comitium/Dockerfile +++ b/comitium/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.23 -RUN apk --no-cache add make go scdoc -RUN wget -O - https://git.sr.ht/~nytpu/comitium/archive/v1.8.2.tar.gz | tar -xz \ +RUN apk --no-cache add make go scdoc \ + && wget -O - https://git.sr.ht/~nytpu/comitium/archive/v1.8.2.tar.gz | tar -xz \ && make --directory=comitium-v1.8.2 \ && mv comitium-v1.8.2/build/comitium /usr/local/bin/comitium \ && apk del make go scdoc \