From 66f3383cc5b9e2b91bee316a75f2791dadf7fb7c Mon Sep 17 00:00:00 2001 From: Paolo Asperti Date: Tue, 14 Feb 2023 01:20:25 +0100 Subject: [PATCH] added missing libs --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3734ae4..9e2fb54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:edge ARG HUGO_VERSION=0.110.0 RUN \ - apk -U add wget && \ + apk -U add wget libgcc libstdc++ && \ wget -O - "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz" | tar xvzf - -C /usr/bin ENTRYPOINT [ "/usr/bin/hugo" ]