From 8f31672b0f13ed0de85f4d6dc72b764d83e76373 Mon Sep 17 00:00:00 2001 From: Pagwin Date: Thu, 26 Feb 2026 01:32:12 -0500 Subject: [PATCH] fixed docker issues --- Dockerfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5330cc7..22a1536 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,15 @@ RUN apt update RUN apt upgrade -y -RUN apt install esbuild -y +RUN apt install locales curl -y + +# unfortunately debian is eternally outdated so we need to get esbuild from npm +RUN curl -fsSL https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz \ + | tar -xz --strip-components=2 -C /usr/local/bin package/bin/esbuild + +# If I don't do this then some bit in Haskell throws a fit for BS Locale reasons +RUN locale-gen en_US.UTF-8 +ENV LANG=C.UTF-8 COPY --from=build /mnt /mnt