From 11e5d66ca6a9a15601b5eb2849b960139e90ccfe Mon Sep 17 00:00:00 2001 From: Jeffrey Bouter Date: Tue, 13 Sep 2022 20:29:25 +0200 Subject: [PATCH] vers(hugo): Downgrade to v0.101.0 to work with docsy Signed-off-by: Jeffrey Bouter --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 757ddb5..fcf3722 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM golang:alpine LABEL maintainer="info@warpnet.nl" \ repo="https://github.com/warpnet/hugo-extended" -ENV HUGO_VERSION 0.102.3 +ENV HUGO_VERSION 0.101.0 # hadolint ignore=DL3018,DL3003 RUN set -eux \ && apk add --no-cache nodejs npm curl gcc libc-dev g++ git \ @@ -13,4 +13,4 @@ RUN set -eux \ && cd .. && rm -rf hugo* \ WORKDIR /data -CMD ["hugo", "server", "-D", "--bind", "0.0.0.0"] +ENTRYPOINT ["hugo", "server", "-D", "--bind", "0.0.0.0"]