Files
unbound-site/Dockerfile
T
renovate 8af96fe010
unbound-site / build (push) Skipped
renovate/stability-days Updates have met minimum release age requirement
unbound-site / build (pull_request) Successful in 58s
unbound-site / deploy-prod (pull_request) Skipped
chore(deps): update nginx docker tag to v1.31.4
2026-08-19 21:14:27 +00:00

21 lines
711 B
Docker

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