chore: add libstdc++ and libgcc dependencies to alpine base image

This commit is contained in:
Greg 2025-06-01 22:19:27 +02:00
parent c7bb167144
commit e8cd3f7e2a

View File

@ -2,7 +2,7 @@
FROM alpine:3.19 AS builder
# Install dependencies
RUN apk add --no-cache wget tar file gcompat
RUN apk add --no-cache wget tar file gcompat libstdc++ libgcc
# Install Hugo extended version 0.147.0 (latest stable version) with verbose logging
RUN HUGO_VERSION=0.147.0 && \