From c96ccee9b88bc5533d14a4dea2894e131382fd14 Mon Sep 17 00:00:00 2001 From: b3ni15 Date: Mon, 7 Jul 2025 00:38:49 +0200 Subject: [PATCH] Enhance Dockerfile: improve .NET SDK installation command to ensure successful execution with multiple options --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 65a0a4b..930a2dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -77,7 +77,7 @@ RUN cd /tmp \ && Xvfb :99 -screen 0 1024x768x16 & \ XVFB_PID=$! \ && sleep 3 \ - && wine dotnet-sdk-9.0.301-win-x64.exe /quiet \ + && wine dotnet-sdk-9.0.301-win-x64.exe /S || wine dotnet-sdk-9.0.301-win-x64.exe /quiet || wine dotnet-sdk-9.0.301-win-x64.exe \ && wineserver --wait \ && kill $XVFB_PID || true \ && rm dotnet-sdk-9.0.301-win-x64.exe || true