remove "vv" from tar

- I always include "vv" out of habit. Not necessary in a non-interactive setting.
This commit is contained in:
Drew Bowering 2025-05-14 08:53:20 -06:00
parent 0dfe3f3ce0
commit 9c3547c208
Signed by: drew
GPG Key ID: DC9462335BDDAC6B

View File

@ -11,7 +11,7 @@ LABEL org.opencontainers.image.description="Image based on the standard Golang i
WORKDIR /go/hugo WORKDIR /go/hugo
RUN wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_linux-amd64.tar.gz \ RUN wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_linux-amd64.tar.gz \
&& tar xvvzf hugo_${HUGO_VERSION}_linux-amd64.tar.gz \ && tar xzf hugo_${HUGO_VERSION}_linux-amd64.tar.gz \
&& mv hugo /usr/bin && mv hugo /usr/bin
WORKDIR /go WORKDIR /go