Files
unbound-site/Dockerfile
T
renovate d4e3ab3a0b
unbound-site / build (push) Successful in 56s
unbound-site / deploy-prod (push) Successful in 1m37s
chore(deps): update nginx docker tag to v1.31.2 (#224)
2026-06-21 01:13:50 +00:00

21 lines
711 B
Docker

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