From 7f9cd3c581533444d2ceb59763321d33df5b99ca Mon Sep 17 00:00:00 2001 From: Torsten Widmann Date: Wed, 24 Nov 2021 20:26:54 +0100 Subject: [PATCH] Add additional Repos for Wine (#25) --- wine/latest/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wine/latest/Dockerfile b/wine/latest/Dockerfile index 47a4e52..7ab8e30 100644 --- a/wine/latest/Dockerfile +++ b/wine/latest/Dockerfile @@ -14,8 +14,10 @@ RUN dpkg --add-architecture i386 \ RUN wget -nc https://dl.winehq.org/wine-builds/winehq.key \ && apt-key add winehq.key \ && echo "deb https://dl.winehq.org/wine-builds/debian/ bullseye main" >> /etc/apt/sources.list \ + && wget -O- -q download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_11/Release.key | apt-key add - \ + && echo "deb http://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_11 ./" | tee /etc/apt/sources.list.d/wine-obs.list \ && apt update \ - && apt install -y --install-recommends winehq-stable cabextract xvfb + && apt install -y --install-recommends winehq-stable cabextract xvfb # Set up Winetricks RUN wget -q -O /usr/sbin/winetricks https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks \