Merge branch 'master' into bump-to-traefik-2.4.0
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
wanderer 2021-01-31 05:10:29 +01:00
commit 41e56407d1
Signed by: Gitea
GPG Key ID: 0DD13DBC6B5433D3

@ -1,4 +1,4 @@
FROM immawanderer/fedora-hugo:latest
FROM immawanderer/fedora-hugo:latest AS hugobuild
RUN mkdir -pv /homepage
COPY . /homepage
@ -12,7 +12,7 @@ RUN hugo --minify --gc=true
WORKDIR /
FROM nginx:mainline-alpine
COPY --from=0 /homepage/public/ /usr/share/nginx/html
COPY --from=hugobuild /homepage/public/ /usr/share/nginx/html
# tripple slash reference
# https://stackoverflow.com/questions/5190966/using-sed-to-insert-tabs/5191165#5191165