Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions msbuild-2022/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ RUN Install-VSBuildTools2022 -InstallationPath C:\MSVS -Workloads `

ENV LLVM_VERSION 20.1.4

RUN Register-SystemPath -Path C:\LLVM\bin; `
Install-LLVM -Version $env:LLVM_VERSION -InstallationPath C:\LLVM;
RUN Install-LLVM -Version $env:LLVM_VERSION -InstallationPath C:\LLVM;

#--------------------------------------------------------------------
# Install Debugging Tools for Windows
Expand Down
2 changes: 1 addition & 1 deletion scripts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN $scriptArgs = @{ `
# Install WebKitDev Module
#--------------------------------------------------------------------

ENV WEBKIT_DEV_VERSION 0.5.2
ENV WEBKIT_DEV_VERSION 0.6.2

RUN $scriptArgs = @{ `
Name = 'WebKitDev'; `
Expand Down
4 changes: 2 additions & 2 deletions tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ RUN Write-Host Write-Host 'Installing pywin32 ...'; `
#--------------------------------------------------------------------

# Locked version due to later versions not installing in container
ENV RUBY_VERSION 3.1.3-1
ENV RUBY_VERSION 3.1.3.1

RUN Install-Ruby -Version $env:RUBY_VERSION -InstallationPath C:\tools\ruby;

Expand Down Expand Up @@ -135,7 +135,7 @@ RUN Install-NuGet -Version $env:NUGET_VERSION -InstallationPath C:\tools\nuget;
# Locked version due to later versions not installing in container
ENV XAMPP_VERSION 8.1.6

RUN choco install xampp-81 --confirm --version=$env:XAMPP_VERSION; `
RUN Install-Xampp -Version $env:XAMPP_VERSION; `
Update-XamppPerlLocation -perlPath C:\tools\perl; `
Update-XamppPythonLocation -pythonPath C:\tools\python3;

Expand Down