kubecon24/Dockerfile
2024-03-20 09:38:12 +01:00

8 lines
173 B
Docker

FROM betterweb/hugo:latest as build
WORKDIR /app
COPY . /app/
RUN hugo
FROM registry.odit.services/library/nginx-brotli
COPY --from=build /app/public /usr/share/nginx/html