Files
unbound-site/Dockerfile
T
2025-04-23 20:11:25 +00:00

21 lines
711 B
Docker

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