Files
unbound-site/Dockerfile
T
renovate 38160843e0
unbound-site / build (push) Failing after 1m14s
unbound-site / deploy-prod (push) Has been skipped
chore(deps): update nginx:1.29.4-alpine docker digest to 79143ff (#180)
2026-01-09 19:39:49 +00:00

21 lines
711 B
Docker

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