Migrated to blog

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
2022-06-22 20:38:49 +01:00
parent 1a6315fa5f
commit 6ef5248f4d
109 changed files with 23 additions and 7635 deletions

View File

@@ -1,16 +1,2 @@
FROM debian:buster AS builder
RUN apt-get -qq update \
&& DEBIAN_FRONTEND=noninteractive apt-get -qq install -y --no-install-recommends libstdc++6 python-pygments git ca-certificates asciidoc curl \
&& rm -rf /var/lib/apt/lists/*
ENV HUGO_VERSION 0.74.3
ENV HUGO_BINARY hugo_extended_${HUGO_VERSION}_Linux-64bit.deb
RUN curl -sL -o /tmp/hugo.deb \
https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/${HUGO_BINARY} && \
dpkg -i /tmp/hugo.deb && \
rm /tmp/hugo.deb
WORKDIR /app
ADD . .
RUN hugo -d /usr/share/nginx/html/
FROM nginx:latest
COPY --from=builder /usr/share/nginx/html/ /usr/share/nginx/html/
COPY default.conf /etc/nginx/conf.d/default.conf