--ignoredetectedreboot

This commit is contained in:
STAM 2021-04-01 15:29:06 +03:00
parent ca746fef0b
commit 5e5c95e851
2 changed files with 12 additions and 11 deletions

View File

@ -23,7 +23,7 @@ RUN powershell -Command \
################################################################## ##################################################################
# install vcredist packages # install vcredist packages
################################################################## ##################################################################
RUN cinst --no-progress -y -IgnoreChecksums \ RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \
vcredist-all \ vcredist-all \
vcredist140 \ vcredist140 \
vcredist2005 \ vcredist2005 \
@ -37,17 +37,19 @@ RUN cinst --no-progress -y -IgnoreChecksums \
################################################################## ##################################################################
# install dotnet packages # install dotnet packages
################################################################## ##################################################################
RUN cinst --no-progress -y -IgnoreChecksums \ RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \
dotnet \
dotnet-aspnetruntime \ dotnet-aspnetruntime \
dotnet-windowshosting \ dotnet-windowshosting \
dotnet-runtime \ dotnet-runtime \
dotnet-sdk \ dotnet-sdk \
dotnetfx \
powershell-core powershell-core
################################################################## ##################################################################
# install base packages # install base packages
################################################################## ##################################################################
RUN cinst --no-progress -y -IgnoreChecksums \ RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \
curl \ curl \
far \ far \
findutils \ findutils \
@ -67,7 +69,7 @@ RUN cinst --no-progress -y -IgnoreChecksums \
################################################################## ##################################################################
# install archive packages # install archive packages
################################################################## ##################################################################
RUN cinst --no-progress -y -IgnoreChecksums \ RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \
7zip \ 7zip \
7zip-zstd \ 7zip-zstd \
7zip.commandline \ 7zip.commandline \

View File

@ -17,7 +17,7 @@ RUN powershell -Command \
################################################################## ##################################################################
# install vcredist packages # install vcredist packages
################################################################## ##################################################################
RUN cinst --no-progress -y -IgnoreChecksums \ RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \
vcredist-all \ vcredist-all \
vcredist140 \ vcredist140 \
vcredist2005 \ vcredist2005 \
@ -31,19 +31,18 @@ RUN cinst --no-progress -y -IgnoreChecksums \
################################################################## ##################################################################
# install dotnet packages # install dotnet packages
################################################################## ##################################################################
RUN cinst --no-progress -y -IgnoreChecksums \ RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \
directx \ directx \
dotnet \ dotnet \
# dotnet-aspnetruntime \
# dotnet-windowshosting \
dotnet-runtime \ dotnet-runtime \
dotnet-sdk \ dotnet-sdk \
dotnetfx \
powershell-core powershell-core
################################################################## ##################################################################
# install base packages # install base packages
################################################################## ##################################################################
RUN cinst --no-progress -y -IgnoreChecksums \ RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \
curl \ curl \
far \ far \
findutils \ findutils \
@ -64,7 +63,7 @@ RUN cinst --no-progress -y -IgnoreChecksums \
################################################################## ##################################################################
# install archive packages # install archive packages
################################################################## ##################################################################
RUN cinst --no-progress -y -IgnoreChecksums \ RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \
7zip \ 7zip \
7zip-zstd \ 7zip-zstd \
7zip.commandline \ 7zip.commandline \