fix(docker): add wine32 to enable 32-bit Wine support for winetricks

winetricks vcrun2019 invokes syswow64/regedit.exe (32-bit PE) which
requires wine32; without it Wine returns c0000135 (STATUS_DLL_NOT_FOUND).
i386 architecture is already added so wine32 installs cleanly
This commit is contained in:
2026-03-10 10:06:15 +01:00
parent 8f399f2194
commit 079ec730db

View File

@@ -6,7 +6,7 @@ ENV WINEDEBUG=-all
# System dependencies + Wine + Xvfb # System dependencies + Wine + Xvfb
RUN dpkg --add-architecture i386 && \ RUN dpkg --add-architecture i386 && \
apt-get update && apt-get install -y --no-install-recommends \ apt-get update && apt-get install -y --no-install-recommends \
wine wine64 \ wine wine32 wine64 \
python3 python3-pip python3-venv libpython3.11 \ python3 python3-pip python3-venv libpython3.11 \
binutils wget xvfb xauth cabextract ca-certificates \ binutils wget xvfb xauth cabextract ca-certificates \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*