Dockerfile: Suppress wget output
This commit is contained in:
parent
891011682d
commit
c4dfe87fcb
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ RUN curl -X "GET" -H "Authorization: token $(cat /archive-token.txt)" "$WEBSITE_
|
||||||
WORKDIR /$WEBSITE_ARCHIVE_FOLDER
|
WORKDIR /$WEBSITE_ARCHIVE_FOLDER
|
||||||
RUN zola build ; rm public/404.html
|
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
|
FROM caddy:2
|
||||||
ARG WEBSITE_ARCHIVE_FOLDER
|
ARG WEBSITE_ARCHIVE_FOLDER
|
||||||
|
|
Loading…
Reference in a new issue