fixed docker issues

This commit is contained in:
Pagwin 2026-02-26 01:32:12 -05:00
parent d3096bb9cf
commit 8f31672b0f
No known key found for this signature in database
GPG key ID: 81137023740CA260

View file

@ -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