From 639063cf88139ba0c5b58c4a887f04a90ffb6f59 Mon Sep 17 00:00:00 2001 From: Gabriel Baraldi Date: Mon, 10 Jun 2024 12:42:11 -0300 Subject: [PATCH] Bump msys2 version to the latest release as an attempt to fix the weird ASLR issue --- windows/package-i686/Dockerfile | 2 +- windows/package-x86_64/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/package-i686/Dockerfile b/windows/package-i686/Dockerfile index 94f1f8a..934038e 100644 --- a/windows/package-i686/Dockerfile +++ b/windows/package-i686/Dockerfile @@ -5,7 +5,7 @@ ARG WIN_VERSION=ltsc2022 FROM mcr.microsoft.com/windows/servercore:$WIN_VERSION AS MSYS2_download # We always download x86_64 MSYS2 installer, since our system itself is x86_64. -ARG MSYS2_VERSION=20220904 +ARG MSYS2_VERSION=20240507 ARG MSYS2_DOWNLOAD_URL=https://repo.msys2.org/distrib/x86_64/msys2-base-x86_64-${MSYS2_VERSION}.sfx.exe RUN setx /M PATH "C:\msys64\mingw32\bin;C:\msys64\usr\bin;%PATH%" && \ powershell -Command "Invoke-WebRequest -Uri %MSYS2_DOWNLOAD_URL% -OutFile C:\windows\temp\msys2-base.sfx.exe" && \ diff --git a/windows/package-x86_64/Dockerfile b/windows/package-x86_64/Dockerfile index fa0692a..ecec2b1 100644 --- a/windows/package-x86_64/Dockerfile +++ b/windows/package-x86_64/Dockerfile @@ -5,7 +5,7 @@ ARG WIN_VERSION=ltsc2022 FROM mcr.microsoft.com/windows/servercore:$WIN_VERSION AS MSYS2_download # We always download x86_64 MSYS2 installer, since our system itself is x86_64. -ARG MSYS2_VERSION=20220904 +ARG MSYS2_VERSION=20240507 ARG MSYS2_DOWNLOAD_URL=https://repo.msys2.org/distrib/x86_64/msys2-base-x86_64-${MSYS2_VERSION}.sfx.exe RUN setx /M PATH "C:\msys64\mingw64\bin;C:\msys64\usr\bin;%PATH%" && \ powershell -Command "Invoke-WebRequest -Uri %MSYS2_DOWNLOAD_URL% -OutFile C:/windows/temp/msys2-base.sfx.exe" && \