11 lines
354 B
Docker
11 lines
354 B
Docker
FROM schemers/gauche
|
|
RUN echo "deb http://ftp.de.debian.org/debian bookworm main" > /etc/apt/sources.list
|
|
RUN dpkg --add-architecture i386
|
|
RUN apt update && apt install -y wine32 wine64 make wget
|
|
COPY ./executables/nsis-3.10-setup.exe /setup.exe
|
|
RUN mkdir -p /root/.wine
|
|
RUN wine winecfg
|
|
RUN wine setup.exe /S
|
|
RUN chmod 755 -R /root/.wine
|
|
ENV HOME=/root
|