fix: use xargs -n1 to spawn individual go install
This commit is contained in:
parent
97123369e3
commit
aa0deb29f5
1 changed files with 1 additions and 1 deletions
|
@ -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/
|
||||
|
||||
|
|
Loading…
Reference in a new issue