From 94f91b41cd9a2bb20b81049971ef211f44a46f37 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sun, 14 Apr 2024 02:18:17 -1000 Subject: [PATCH] Add libstdc++ to container builds --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index c1c89bb2..6652842f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ # Bun doesn't run well on Musl but this seems to work FROM imbios/bun-node:1.1.3-current-alpine as base +RUN apk add --no-cache libstdc++ + # Install dependencies into temp directory # This will cache them and speed up future builds FROM base AS install