From f2126c9bc8d8a6b881dafa3f364b3485aafe4007 Mon Sep 17 00:00:00 2001 From: Saul Badillo Date: Sat, 18 Nov 2023 23:08:12 -0600 Subject: [PATCH] Add hugo Dockerfile --- hugo.Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hugo.Dockerfile diff --git a/hugo.Dockerfile b/hugo.Dockerfile new file mode 100644 index 0000000..25aef58 --- /dev/null +++ b/hugo.Dockerfile @@ -0,0 +1,5 @@ +FROM docker.io/golang:1.20-bookworm + +RUN CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest + +ENTRYPOINT hugo