21 lines
685 B
Docker
21 lines
685 B
Docker
FROM nginx:alpine@sha256:814a8e88df978ade80e584cc5b333144b9372a8e3c98872d07137dbf3b44d0e4 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 nginx:alpine@sha256:814a8e88df978ade80e584cc5b333144b9372a8e3c98872d07137dbf3b44d0e4
|
|
ADD default.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=build /site/public /usr/share/nginx/html
|
|
|
|
WORKDIR /usr/share/nginx/html
|