--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
##################################################################
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 \

View File

@ -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 \