Files
unbound-site/Dockerfile
T
renovate 50551bec95
unbound-site / build (push) Successful in 53s
unbound-site / deploy-prod (push) Successful in 1m29s
chore(deps): update nginx docker tag to v1.30.0 (#209)
2026-04-18 23:11:45 +00:00

21 lines
711 B
Docker

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