From dbe0cc0d2c41ec5b565e48a38bb477a6c3d5f4ef Mon Sep 17 00:00:00 2001 From: Jeffrey Bouter Date: Sat, 23 Sep 2023 13:52:35 +0200 Subject: [PATCH] feat: Fix podman run command in docs, update to latest hugo --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fcf3722..d85ef98 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.101.0 +ENV HUGO_VERSION 0.118.2 # hadolint ignore=DL3018,DL3003 RUN set -eux \ && apk add --no-cache nodejs npm curl gcc libc-dev g++ git \ diff --git a/README.md b/README.md index 8ba7574..039de6d 100644 --- a/README.md +++ b/README.md @@ -5,5 +5,5 @@ The hugo-extended container by Warpnet B.V. has hugo built with the `--extended` ## Example usage ```bash -podman -v ./:/data:Z -p 1313:1313 warpnetbv/hugo-extended:latest +podman run -v ./:/data:Z -p 1313:1313 warpnetbv/hugo-extended:latest ```