FROM amd64/nginx:1.29.1-alpine@sha256:cb7f87a9d4da823e752a37b63d93f8090c00ac45abe3b0f723498cf71d1bf680 as build RUN apk add --update \ wget ARG HUGO_VERSION="0.89.4" RUN wget --quiet "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz" && \ tar xzf hugo_${HUGO_VERSION}_Linux-64bit.tar.gz && \ rm -r hugo_${HUGO_VERSION}_Linux-64bit.tar.gz && \ mv hugo /usr/bin COPY ./ /site WORKDIR /site RUN hugo FROM amd64/nginx:1.29.1-alpine@sha256:cb7f87a9d4da823e752a37b63d93f8090c00ac45abe3b0f723498cf71d1bf680 ADD default.conf /etc/nginx/conf.d/default.conf COPY --from=build /site/public /usr/share/nginx/html WORKDIR /usr/share/nginx/html