-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
63 lines (47 loc) · 2.01 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# The Windows 10 base image, compatible with Windows Server 2019
# We can't use Server Core as we need full GUI capabilities.
# See https://hub.docker.com/_/microsoft-windows
FROM mcr.microsoft.com/windows:1809-amd64
#################################################
# Chocolatey
#################################################
# Download Chocolatey Powershell install script
RUN powershell.exe Invoke-WebRequest \
-Uri https://chocolatey.org/install.ps1 \
-OutFile C:\chocolatey-install.ps1
# Execute the install script
RUN powershell.exe \
-ExecutionPolicy bypass \
-InputFormat none \
-NoProfile \
C:\chocolatey-install.ps1
# Append Chocolatey "bin" to the PATH
RUN setx PATH "%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
#################################################
# MinGW
#################################################
RUN choco install --yes --no-progress mingw
# Put the path before the other paths so that
# MinGW shadows Windows commands.
RUN setx PATH "C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw\bin;%PATH%"
#################################################
# MSYS
#################################################
RUN choco install --yes --no-progress --params '/NoUpdate' msys2
RUN setx PATH "C:\tools\msys64\usr\bin;%PATH%"
RUN pacman --sync --sysupgrade --refresh && pacman --sync --needed --noconfirm \
base-devel
#################################################
# Visual C++ Build Tools
#################################################
RUN choco install --yes --no-progress vcbuildtools -ia "/Full"
# Setup Visual C++ command line tools for amd64 on the current environment
RUN call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64&set
#################################################
# WDK
#################################################
RUN choco install --yes --no-progress windowsdriverkit10
#################################################
# Base Dependencies
#################################################
RUN choco install --yes --no-progress git jq