Setup all of the fun things
Some checks failed
Build latest image / build-container (push) Failing after 11s

This commit is contained in:
2025-03-28 19:05:27 +01:00
parent b1c4a8340d
commit f302fd140f
23 changed files with 175 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM hugomods/hugo:exts AS build
WORKDIR /app
COPY . /app/
COPY .git /app/.git
RUN hugo
FROM hugomods/hugo:nginx
COPY --from=build /app/public /site