diff --git a/.woodpecker/myhugo.df b/.woodpecker/myhugo.df new file mode 100644 index 0000000..2f54c7d --- /dev/null +++ b/.woodpecker/myhugo.df @@ -0,0 +1,9 @@ +FROM debian:bullseye-slim + +RUN apt update && \ + apt install --yes curl ca-certificates && \ + curl --location --output hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.111.3/hugo_extended_0.111.3_linux-amd64.deb && \ + apt install --yes ./hugo.deb && \ + rm ./hugo.deb && \ + apt clean && \ + rm -rf /var/lib/apt/lists/*