Files
unbound-site/Dockerfile
T

21 lines
711 B
Docker
Raw Normal View History

FROM amd64/nginx:1.29.7-alpine@sha256:d4e6aef876b65763e15be9e7d4e3fbf09b611f9f084f7d34e7063e1c7927d958 as build
2018-09-21 20:31:17 +02:00
2021-11-23 18:27:10 +01:00
RUN apk add --update \
wget
2018-09-21 20:31:17 +02:00
2021-11-23 18:27:10 +01:00
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
2018-09-21 20:31:17 +02:00
2021-11-23 18:27:10 +01:00
COPY ./ /site
WORKDIR /site
RUN hugo
FROM amd64/nginx:1.29.7-alpine@sha256:d4e6aef876b65763e15be9e7d4e3fbf09b611f9f084f7d34e7063e1c7927d958
2018-09-21 20:31:17 +02:00
ADD default.conf /etc/nginx/conf.d/default.conf
2021-11-23 18:27:10 +01:00
COPY --from=build /site/public /usr/share/nginx/html
2018-09-21 20:31:17 +02:00
2021-11-23 18:27:10 +01:00
WORKDIR /usr/share/nginx/html