Initial Commit

This commit is contained in:
2025-09-06 13:28:05 +10:00
commit 7a9a8a1f15
144 changed files with 3461 additions and 0 deletions

22
Dockerfile Normal file
View File

@ -0,0 +1,22 @@
###############
# Build Stage #
###############
FROM hugomods/hugo:exts as builder
# Base URL
# ARG HUGO_BASEURL=
# ENV HUGO_BASEURL=${HUGO_BASEURL}
# Build site
COPY . /src
RUN hugo --minify --gc
# Set the fallback 404 page if defaultContentLanguageInSubdir is enabled, please replace the `en` with your default language code.
# RUN cp ./public/en/404.html ./public/404.html
###############
# Final Stage #
###############
FROM hugomods/hugo:nginx
LABEL "Matthew McKinnon"="<support@comprofix.com>"
COPY --from=builder /src/public /site