initial commit

This commit is contained in:
2022-10-02 16:55:45 +02:00
commit 904888ddd3
5 changed files with 854 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM alpine:edge
RUN \
apk -U add wget && \
wget -O - "https://github.com/gohugoio/hugo/releases/download/v0.104.2/hugo_0.104.2_linux-amd64.tar.gz" | tar xvzf - -C /usr/bin
ENTRYPOINT [ "/usr/bin/hugo" ]