mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 22:55:44 +03:00
81 lines
2.5 KiB
Docker
81 lines
2.5 KiB
Docker
FROM mcr.microsoft.com/windows:20H2
|
|
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
|
|
|
|
ENV chocolateyUseWindowsCompression false
|
|
|
|
####################################################################################################################################
|
|
# https://docs.microsoft.com/en-us/virtualization/windowscontainers/manage-docker/manage-windows-dockerfile
|
|
####################################################################################################################################
|
|
|
|
##################################################################
|
|
# Installing ocolatey.org
|
|
##################################################################
|
|
RUN powershell -Command \
|
|
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; \
|
|
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
|
|
|
##################################################################
|
|
# install vcredist packages
|
|
##################################################################
|
|
RUN cinst --no-progress -y -IgnoreChecksums \
|
|
vcredist-all \
|
|
vcredist140 \
|
|
vcredist2005 \
|
|
vcredist2008 \
|
|
vcredist2010 \
|
|
vcredist2012 \
|
|
vcredist2013 \
|
|
vcredist2013 \
|
|
vcredist2015
|
|
|
|
##################################################################
|
|
# install dotnet packages
|
|
##################################################################
|
|
RUN cinst --no-progress -y -IgnoreChecksums \
|
|
directx \
|
|
dotnet \
|
|
# dotnet-aspnetruntime \
|
|
# dotnet-windowshosting \
|
|
dotnet-runtime \
|
|
dotnet-sdk \
|
|
dotnetfx \
|
|
powershell-core
|
|
|
|
##################################################################
|
|
# install base packages
|
|
##################################################################
|
|
RUN cinst --no-progress -y -IgnoreChecksums \
|
|
curl \
|
|
far \
|
|
findutils \
|
|
ffmpeg-shared \
|
|
git \
|
|
make \
|
|
mc \
|
|
nano \
|
|
openssl \
|
|
sed \
|
|
steamcmd \
|
|
sudo \
|
|
tartool \
|
|
unrar \
|
|
unzip \
|
|
wget
|
|
|
|
##################################################################
|
|
# install archive packages
|
|
##################################################################
|
|
RUN cinst --no-progress -y -IgnoreChecksums \
|
|
7zip \
|
|
7zip-zstd \
|
|
7zip.commandline \
|
|
7zip.portable \
|
|
asar7z \
|
|
exfat7z \
|
|
grit7z \
|
|
iso7z \
|
|
modern7z \
|
|
thumbs7z \
|
|
wavpack7z \
|
|
winrar
|
|
|