Files
Dmitry b163e36b51
Build and Deploy / deploy (push) Failing after 1m1s
Init repo2
2026-05-18 13:48:20 +03:00

9 lines
197 B
Docker

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