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

84 lines
2.8 KiB
Docker
Raw Normal View History

2021-04-01 14:50:00 +03:00
FROM mcr.microsoft.com/windows:1809-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-04-01 18:26:19 +03:00
##################################################################
# Creating workdir for future
##################################################################
RUN mkdir C:\\EpicMorg
WORKDIR C:\\EpicMorg
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
##################################################################
2021-04-01 15:29:06 +03:00
RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \
2021-03-31 21:00:34 +03:00
vcredist-all \
vcredist140 \
vcredist2005 \
vcredist2008 \
vcredist2010 \
vcredist2012 \
vcredist2013 \
vcredist2013 \
2021-04-01 00:51:20 +03:00
vcredist2015
##################################################################
# install dotnet packages
##################################################################
2021-04-01 15:29:06 +03:00
RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \
2021-04-01 00:51:20 +03:00
directx \
2021-04-01 15:29:06 +03:00
dotnet \
2021-04-01 00:51:20 +03:00
dotnet-runtime \
dotnet-sdk \
powershell-core
##################################################################
# install base packages
##################################################################
2021-04-01 15:29:06 +03:00
RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \
2021-04-01 00:51:20 +03:00
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
##################################################################
2021-04-01 15:29:06 +03:00
RUN cinst --no-progress -y -IgnoreChecksums --ignoredetectedreboot \
2021-04-01 00:51:20 +03:00
7zip \
7zip-zstd \
7zip.commandline \
7zip.portable \
asar7z \
exfat7z \
grit7z \
iso7z \
modern7z \
thumbs7z \
wavpack7z \
winrar
2021-04-01 12:12:50 +03:00