kubecon24/Dockerfile
2024-03-19 16:16:41 +01:00

8 lines
160 B
Docker

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