# Build public with hugo FROM jguyomard/hugo-builder:latest COPY . /build WORKDIR /build RUN hugo -b https://rene.jochums.at -v -t persona # Copy to a nginx container FROM nginx:1.17-alpine COPY --from=0 /build/public/* /usr/share/nginx/html/