|
1 | 1 | ARG IMAGE_VERSION=latest
|
2 |
| -FROM electronuserland/builder:$IMAGE_VERSION |
| 2 | +FROM --platform=linux/x86_64 electronuserland/builder:$IMAGE_VERSION |
3 | 3 |
|
4 | 4 | RUN dpkg --add-architecture i386 && \
|
5 |
| - curl -Lo /usr/share/keyrings/winehq.asc https://dl.winehq.org/wine-builds/winehq.key && \ |
6 |
| - echo 'deb [signed-by=/usr/share/keyrings/winehq.asc] https://dl.winehq.org/wine-builds/ubuntu/ focal main' > /etc/apt/sources.list.d/winehq.list && \ |
7 |
| - apt-get update && \ |
8 |
| - apt-get install -y --no-install-recommends \ |
9 |
| - # We can't install `winehq-stable`, we must manually lock each dependency to v6 (ref: https://github.com/electron-userland/electron-builder/issues/6780), |
10 |
| - winehq-stable=6.0.4~focal-1 \ |
11 |
| - wine-stable=6.0.4~focal-1 \ |
12 |
| - wine-stable-i386=6.0.4~focal-1 \ |
13 |
| - wine-stable-amd64=6.0.4~focal-1 \ |
14 |
| - && \ |
| 5 | + mkdir -pm755 /etc/apt/keyrings && \ |
| 6 | + # wine |
| 7 | + # https://gitlab.winehq.org/wine/wine/-/wikis/Debian-Ubuntu#install-wine |
| 8 | + wget -O - https://dl.winehq.org/wine-builds/winehq.key | gpg --dearmor -o /etc/apt/keyrings/winehq-archive.key - && \ |
| 9 | + wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources && \ |
| 10 | + apt-get -qq update && \ |
| 11 | + apt-get -qq install -y --install-recommends winehq-stable && \ |
| 12 | + # powershell |
| 13 | + # https://learn.microsoft.com/en-us/powershell/scripting/install/install-ubuntu?view=powershell-7.4 |
| 14 | + apt-get install -yq apt-transport-https software-properties-common && \ |
| 15 | + wget -q https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb && \ |
| 16 | + dpkg -i packages-microsoft-prod.deb && \ |
| 17 | + rm packages-microsoft-prod.deb && \ |
| 18 | + apt-get -qq update && \ |
| 19 | + apt-get install -y powershell && \ |
15 | 20 | # clean
|
16 |
| - apt-get clean && rm -rf /var/lib/apt/lists/* |
| 21 | + apt-get clean && \ |
| 22 | + rm -rf /var/lib/apt/lists/* |
17 | 23 |
|
18 |
| -RUN curl -L https://github.com/electron-userland/electron-builder-binaries/releases/download/wine-2.0.3-mac-10.13/wine-home.zip > /tmp/wine-home.zip && unzip /tmp/wine-home.zip -d /root/.wine && unlink /tmp/wine-home.zip |
| 24 | +ENV WINEDEBUG=-all,err+all |
| 25 | +ENV WINEDLLOVERRIDES=winemenubuilder.exe=d |
19 | 26 |
|
20 |
| -ENV WINEDEBUG -all,err+all |
21 |
| -ENV WINEDLLOVERRIDES winemenubuilder.exe=d |
| 27 | +# We expect this to error in the logs due to no screen display, but it seems to be the only way to init a ~/.wine config dir |
| 28 | +# Note: We could run this via xvfb-run, but since `winecfg` is a GUI config tool, the docker build process hangs as the process never exits |
| 29 | +RUN winecfg |
0 commit comments