From b4dba940e0fa860228b560a187e83bdc3f3e4d98 Mon Sep 17 00:00:00 2001 From: Joschua <83541206+joschua-rgb@users.noreply.github.com> Date: Sat, 29 Mar 2025 20:24:00 +0100 Subject: [PATCH] fix(Dockerfile): Install vcrun2019 Added extra winetricks step to install the Visual C++ Redistributable 2019 package to fix "wine: Unimplemented function ucrtbase.dll.crealf called at address ..." error --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 40c02e4..2ba552b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,9 @@ FROM jackmckew/pyinstaller-windows +#extra winetrick step to fix "Unimplemented function ucrtbase.dll.crealf called" +RUN apt-get install -y xvfb libgnutls30 libgnutls30:i386 +RUN xvfb-run winetricks --force -q vcrun2019 + COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh