From c4dfe87fcbf3abb96f46de56729a4609bb6c6476 Mon Sep 17 00:00:00 2001 From: Jonas Tobias Hopusch Date: Tue, 22 Feb 2022 12:46:26 +0100 Subject: [PATCH] Dockerfile: Suppress wget output --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3345575..fcb81b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN curl -X "GET" -H "Authorization: token $(cat /archive-token.txt)" "$WEBSITE_ WORKDIR /$WEBSITE_ARCHIVE_FOLDER RUN zola build ; rm public/404.html -RUN wget -O /tmp/Caddyfile "https://gitea.jotoho.de/jotoho/site-deployer/raw/branch/master/$WEBSITE_HOST/Caddyfile" +RUN wget -O /tmp/Caddyfile "https://gitea.jotoho.de/jotoho/site-deployer/raw/branch/master/$WEBSITE_HOST/Caddyfile" >/dev/null 2>&1 FROM caddy:2 ARG WEBSITE_ARCHIVE_FOLDER