diff --git a/Dockerfile.builder b/Dockerfile.builder index 844fa3b53a..963909944e 100644 --- a/Dockerfile.builder +++ b/Dockerfile.builder @@ -8,7 +8,7 @@ RUN go get -d github.com/tdewolff/minify/cmd/minify \ FROM starefossen/github-pages:177 # Get some utilities we need for post-build steps -RUN apk update && apk add bash wget subversion gzip +RUN apk add --no-cache bash wget subversion gzip # Copy scripts used for static HTML post-processing. COPY scripts /scripts diff --git a/Dockerfile.nginx.onbuild b/Dockerfile.nginx.onbuild index 8b57f715f5..9dd986bcfa 100644 --- a/Dockerfile.nginx.onbuild +++ b/Dockerfile.nginx.onbuild @@ -16,4 +16,4 @@ ONBUILD COPY --from=builder /site /usr/share/nginx/html COPY nginx-overrides.conf /etc/nginx/conf.d/default.conf # Start Nginx to serve the archive at / (which will redirect to the version-specific dir) -CMD echo -e "Docker docs are viewable at:\nhttp://0.0.0.0:4000"; exec nginx -g 'daemon off;' \ No newline at end of file +CMD echo -e "Docker docs are viewable at:\nhttp://0.0.0.0:4000"; exec nginx -g 'daemon off;'