Init repo2
Build and Deploy / deploy (push) Failing after 1m1s

This commit is contained in:
Dmitry
2026-05-18 13:48:20 +03:00
parent 33880f5eae
commit b163e36b51
17 changed files with 358 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM hugomods/hugo:exts AS builder
WORKDIR /site
COPY . .
RUN hugo --minify
FROM nginx:alpine
COPY --from=builder /site/public /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf