Hello whiny.lol

This commit is contained in:
2026-03-09 18:41:02 +00:00
commit b880a1acc2
181 changed files with 3017 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
# Hugo
FROM hugomods/hugo:base AS build
WORKDIR /src
COPY . .
RUN hugo
# Nginx (serve)
FROM nginx:alpine
COPY --from=build /src/public /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
HEALTHCHECK --interval=5m --timeout=5s \
CMD curl -f http://localhost/ || exit 1