From bf378349027b4fc1abdc72ff3090aee4d4b3b05c Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Fri, 23 Jun 2023 09:15:18 +0200 Subject: [PATCH] fix: add gcompat to the alpine image to fix libc (#107) Reviewed-on: https://gitea.rknet.org/docker/hugo/pulls/107 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a3d2bfe..cf30f93 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ ENV HUGO_ENV=production COPY overlay/ / RUN apk add --update --no-cache --virtual .build-deps tar curl && \ - apk add --update --no-cache libc6-compat libstdc++ busybox-suid bash bash-completion git tzdata make asciidoctor && \ + apk add --update --no-cache gcompat libc6-compat libstdc++ busybox-suid bash bash-completion git tzdata make asciidoctor && \ echo "Installing hugo version '${HUGO_VERSION##v}' ..." && \ curl -SsfL "https://github.com/gohugoio/hugo/releases/download/${HUGO_VERSION}/hugo_extended_${HUGO_VERSION##v}_Linux-64bit.tar.gz" | \ tar xz -C /usr/local/bin hugo && \