From 9c3547c208a291483beff574e9d44da97e8aea34 Mon Sep 17 00:00:00 2001 From: Drew Bowering Date: Wed, 14 May 2025 08:53:20 -0600 Subject: [PATCH] remove "vv" from tar - I always include "vv" out of habit. Not necessary in a non-interactive setting. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d2a67c3..14a44f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ LABEL org.opencontainers.image.description="Image based on the standard Golang i WORKDIR /go/hugo 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 WORKDIR /go