Initial commit

This commit is contained in:
2026-08-08 11:41:41 +02:00
commit 487cc8e2dd
20 changed files with 201 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM ghcr.io/gohugoio/hugo:latest
USER root
# The image's "hugo" user is a system account (adduser -S) with shell /sbin/nologin,
# since it's only meant to run the hugo binary. VS Code's integrated terminal needs
# an interactive shell, so give it one.
RUN apk add --no-cache git-lfs && \
sed -i 's#/sbin/nologin#/bin/sh#' /etc/passwd
USER hugo:hugo