Files
unbound-site/Dockerfile
T
renovate be315b52d7
unbound-site / build (push) Successful in 57s
unbound-site / deploy-prod (push) Successful in 1m34s
chore(deps): update nginx:1.31.2-alpine docker digest to 20a282b (#226)
2026-06-22 23:09:54 +00:00

21 lines
711 B
Docker

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