Files
pyinstaller-action-windows/Dockerfile
Joschua b4dba940e0 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
2025-03-29 20:24:00 +01:00

11 lines
313 B
Docker

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
ENTRYPOINT ["/entrypoint.sh"]