Files
unbound-site/Dockerfile
T
renovate 6bc4bd262b
unbound-site / build (push) Successful in 47s
unbound-site / deploy-prod (push) Successful in 1m12s
chore(deps): update nginx:1.29.4-alpine docker digest to 0a836ea (#183)
2026-01-14 02:11:43 +00:00

21 lines
711 B
Docker

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