2024-10-21 20:51:07 +00:00
|
|
|
FROM node:22.10.0-bookworm
|
|
|
|
|
|
|
|
RUN dpkg --add-architecture i386
|
2024-12-09 00:56:55 -06:00
|
|
|
RUN apt update && apt install -y zip dpkg fakeroot rpm wget p7zip-full unzip jq awscli
|
2024-11-18 12:52:31 -06:00
|
|
|
RUN wget https://github.com/ebourg/jsign/releases/download/6.0/jsign_6.0_all.deb
|
|
|
|
RUN apt install -y ./jsign_6.0_all.deb
|
2024-10-21 20:51:07 +00:00
|
|
|
|
|
|
|
RUN mkdir -pm755 /etc/apt/keyrings
|
|
|
|
RUN wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
|
|
|
|
RUN wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/bookworm/winehq-bookworm.sources
|
|
|
|
RUN echo "deb http://deb.debian.org/debian bookworm main contrib non-free" > /etc/apt/sources.list
|
|
|
|
RUN echo "deb http://deb.debian.org/debian bookworm-updates main contrib non-free" >> /etc/apt/sources.list
|
|
|
|
|
|
|
|
RUN apt update && apt install -y --install-recommends winehq-stable mono-devel winetricks
|
|
|
|
RUN winetricks -q -f dotnet45
|
|
|
|
|
|
|
|
RUN wget https://github.com/wixtoolset/wix3/releases/download/wix3141rtm/wix314-binaries.zip
|
|
|
|
RUN unzip wix314-binaries.zip -d wix314-binaries
|
|
|
|
ENV WINEPATH="/wix314-binaries/"
|