docker-scripts/win32/epicmorg/prod/win10/Dockerfile

81 lines
2.5 KiB
Docker
Raw Normal View History

2021-04-01 14:01:20 +03:00
FROM mcr.microsoft.com/windows:20H2-amd64
2021-03-31 21:00:34 +03:00
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
ENV chocolateyUseWindowsCompression false
2021-04-01 00:51:20 +03:00
####################################################################################################################################
# https://docs.microsoft.com/en-us/virtualization/windowscontainers/manage-docker/manage-windows-dockerfile
####################################################################################################################################
2021-03-31 21:00:34 +03:00
##################################################################
# 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'))
##################################################################
2021-04-01 00:51:20 +03:00
# install vcredist packages
2021-03-31 21:00:34 +03:00
##################################################################
RUN cinst --no-progress -y -IgnoreChecksums \
vcredist-all \
vcredist140 \
vcredist2005 \
vcredist2008 \
vcredist2010 \
vcredist2012 \
vcredist2013 \
vcredist2013 \
2021-04-01 00:51:20 +03:00
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 \
2021-03-31 21:00:34 +03:00
unrar \
unzip \
wget
2021-04-01 00:51:20 +03:00
##################################################################
# install archive packages
##################################################################
RUN cinst --no-progress -y -IgnoreChecksums \
7zip \
7zip-zstd \
7zip.commandline \
7zip.portable \
asar7z \
exfat7z \
grit7z \
iso7z \
modern7z \
thumbs7z \
wavpack7z \
winrar
2021-04-01 12:12:50 +03:00