From fd16cc396f2eb05a8bc0e86c1eb60600a9c7edd7 Mon Sep 17 00:00:00 2001 From: Jonas Tobias Hopusch Date: Sun, 5 Dec 2021 17:13:48 +0100 Subject: [PATCH] Do not bundle 404.html with site --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b4fe12e..f2b20fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ COPY archive-token.txt /archive-token.txt RUN curl -X "GET" -H "Authorization: token $(cat /archive-token.txt)" "$WEBSITE_ARCHIVE_URL" 2>/dev/null | gzip --decompress --stdout - | tar xf - ; rm /archive-token.txt WORKDIR /srv/$WEBSITE_ARCHIVE_FOLDER -RUN zola build +RUN zola build ; rm public/404.html EXPOSE 80/tcp