From aa0deb29f5b0ffd0f78c9140b94fc753bbaeb564 Mon Sep 17 00:00:00 2001 From: Bastien Riviere Date: Thu, 2 May 2024 18:03:55 +0200 Subject: [PATCH] fix: use xargs -n1 to spawn individual go install --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index b259d16..45e1e8e 100644 --- a/Containerfile +++ b/Containerfile @@ -12,7 +12,7 @@ RUN apk update && \ RUN rm /extra-packages COPY go-packages / -RUN grep -v '^#' /go-packages | xargs go install +RUN grep -v '^#' /go-packages | xargs -n1 go install RUN rm /go-packages RUN mv /root/go/bin/* /usr/local/bin/