Files
unbound-site/Dockerfile
T
renovate ce14a7ed0e
unbound-site / build (pull_request) Successful in 1m20s
unbound-site / deploy-prod (pull_request) Has been skipped
chore(deps): update nginx:1.29.5-alpine docker digest to 1583242
2026-03-10 22:07:53 +00:00

21 lines
711 B
Docker

FROM amd64/nginx:1.29.5-alpine@sha256:1583242da12cbcc3085be6977270479d6a7ebfc9233e7fe06fba7013c7ba53d1 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.5-alpine@sha256:1583242da12cbcc3085be6977270479d6a7ebfc9233e7fe06fba7013c7ba53d1
ADD default.conf /etc/nginx/conf.d/default.conf
COPY --from=build /site/public /usr/share/nginx/html
WORKDIR /usr/share/nginx/html