From 8faf8f4a31ae83333047532a2d7cf0e731528f61 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Mon, 27 Feb 2023 12:45:44 +0100 Subject: [PATCH] wine: add --allow-downgrades to second apt-get command --- contrib/build-wine/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/build-wine/Dockerfile b/contrib/build-wine/Dockerfile index deb28e114..9b4dfbbdb 100644 --- a/contrib/build-wine/Dockerfile +++ b/contrib/build-wine/Dockerfile @@ -46,7 +46,7 @@ RUN wget -nc https://dl.winehq.org/wine-builds/Release.key && \ rm winehq.key && \ apt-add-repository https://dl.winehq.org/wine-builds/debian/ && \ apt-get update -q && \ - apt-get install -qy \ + apt-get install -qy --allow-downgrades \ wine-stable-amd64:amd64=7.0.0.0~bullseye-1 \ wine-stable-i386:i386=7.0.0.0~bullseye-1 \ wine-stable:amd64=7.0.0.0~bullseye-1 \