1
0
Fork 0

Dockerfile: Suppress wget output

This commit is contained in:
Jonas Tobias Hopusch 2022-02-22 12:46:26 +01:00
parent 891011682d
commit c4dfe87fcb
Failed to generate hash of commit
1 changed files with 1 additions and 1 deletions

View File

@ -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