blog/Dockerfile
2024-12-01 23:55:57 -06:00

7 lines
No EOL
185 B
Docker

FROM hugomods/hugo:exts as hugo
COPY . /src
RUN hugo --minify
FROM nginx:alpine-slim
COPY --from=hugo /src/public /usr/share/nginx/html
COPY default.conf /etc/nginx/conf.d/default.conf