docs/Dockerfile

7 lines
147 B
Docker
Raw Normal View History

2023-05-23 21:47:11 +02:00
FROM hugomods/hugo:exts-0.112.1 as build
2023-05-23 21:35:35 +02:00
COPY . /src
2023-05-24 18:14:23 +02:00
RUN hugo --minify --gc
2023-05-23 21:29:28 +02:00
FROM nginx:alpine
2023-05-23 21:35:35 +02:00
COPY --from=build /src/public /usr/share/nginx/html