From 5e5c95e851563b650ee41ee5527d9174dfdf3455 Mon Sep 17 00:00:00 2001 From: STAM Date: Thu, 1 Apr 2021 15:29:06 +0300 Subject: [PATCH] --ignoredetectedreboot --- win32/epicmorg/prod/win-server-core/Dockerfile | 10 ++++++---- win32/epicmorg/prod/win10/Dockerfile | 13 ++++++------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/win32/epicmorg/prod/win-server-core/Dockerfile b/win32/epicmorg/prod/win-server-core/Dockerfile index db9a86daf..3c95b6010 100644 --- a/win32/epicmorg/prod/win-server-core/Dockerfile +++ b/win32/epicmorg/prod/win-server-core/Dockerfile @@ -23,7 +23,7 @@ RUN powershell -Command \ ################################################################## # install vcredist packages ################################################################## -RUN cinst --no-progress -y -IgnoreChecksums \ +RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \ vcredist-all \ vcredist140 \ vcredist2005 \ @@ -37,17 +37,19 @@ RUN cinst --no-progress -y -IgnoreChecksums \ ################################################################## # install dotnet packages ################################################################## -RUN cinst --no-progress -y -IgnoreChecksums \ +RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \ + dotnet \ dotnet-aspnetruntime \ dotnet-windowshosting \ dotnet-runtime \ dotnet-sdk \ + dotnetfx \ powershell-core ################################################################## # install base packages ################################################################## -RUN cinst --no-progress -y -IgnoreChecksums \ +RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \ curl \ far \ findutils \ @@ -67,7 +69,7 @@ RUN cinst --no-progress -y -IgnoreChecksums \ ################################################################## # install archive packages ################################################################## -RUN cinst --no-progress -y -IgnoreChecksums \ +RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \ 7zip \ 7zip-zstd \ 7zip.commandline \ diff --git a/win32/epicmorg/prod/win10/Dockerfile b/win32/epicmorg/prod/win10/Dockerfile index 8cbc4ddf1..ab72f0755 100644 --- a/win32/epicmorg/prod/win10/Dockerfile +++ b/win32/epicmorg/prod/win10/Dockerfile @@ -17,7 +17,7 @@ RUN powershell -Command \ ################################################################## # install vcredist packages ################################################################## -RUN cinst --no-progress -y -IgnoreChecksums \ +RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \ vcredist-all \ vcredist140 \ vcredist2005 \ @@ -31,19 +31,18 @@ RUN cinst --no-progress -y -IgnoreChecksums \ ################################################################## # install dotnet packages ################################################################## -RUN cinst --no-progress -y -IgnoreChecksums \ +RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \ directx \ - dotnet \ -# dotnet-aspnetruntime \ -# dotnet-windowshosting \ + dotnet \ dotnet-runtime \ dotnet-sdk \ + dotnetfx \ powershell-core ################################################################## # install base packages ################################################################## -RUN cinst --no-progress -y -IgnoreChecksums \ +RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \ curl \ far \ findutils \ @@ -64,7 +63,7 @@ RUN cinst --no-progress -y -IgnoreChecksums \ ################################################################## # install archive packages ################################################################## -RUN cinst --no-progress -y -IgnoreChecksums \ +RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \ 7zip \ 7zip-zstd \ 7zip.commandline \