From 7243c474efb4c1177ee9df3f1e9a627f54066382 Mon Sep 17 00:00:00 2001 From: niansa Date: Sun, 10 Mar 2024 13:09:01 +0000 Subject: [PATCH] Pass -y to apt-get --- Dockerfile-windows | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-windows b/Dockerfile-windows index e09a43b..3b7c520 100644 --- a/Dockerfile-windows +++ b/Dockerfile-windows @@ -1,11 +1,11 @@ FROM debian:trixie RUN apt-get update --yes \ - && apt-get install wget \ + && apt-get -y install wget \ && dpkg --add-architecture i386 \ && mkdir -pm755 /etc/apt/keyrings \ && wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key \ && wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/trixie/winehq-trixie.sources \ && apt-get update \ - && apt-get install winehq-stable \ + && apt-get -y install winehq-stable \ && apt-get clean \ && wine winecfg