From 5b03d93ef86b2099598404757ef40b9f268716c5 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Wed, 8 May 2024 16:39:54 -1000 Subject: [PATCH] fix(build): :arrow_down: Downgrade Bun to 1.1.4 in the building stage of the Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 117a0322..76f49773 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ -# Bun doesn't run well on Musl but this seems to work -FROM imbios/bun-node:1.1.7-20-alpine as base +# Use 1.1.4 for building to prevent a Unicode bug with 1.1.5+ +# Temporary until they fix it +FROM imbios/bun-node:1.1.4-current-alpine as base RUN apk add --no-cache libstdc++