Skip to content

Commit fcd3eb3

Browse files
HADOOP-19651. Upgrade libopenssl to 3.5.2-1 needed for rsync (#7875)
* The current version of libopenssl (3.1.4-1) isn't available for download on the msys site. * This PR thus upgrades the same to 3.5.2-1.
1 parent 1abdf72 commit fcd3eb3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dev-support/docker/Dockerfile_windows_10

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ RUN powershell Invoke-WebRequest -Uri https://github.com/facebook/zstd/releases/
7474
RUN powershell Expand-Archive -Path $Env:TEMP\zstd-v1.5.4-win64.zip -DestinationPath "C:\ZStd"
7575
RUN setx PATH "%PATH%;C:\ZStd"
7676

77-
# Install libopenssl 3.1.4 needed for rsync 3.2.7.
78-
RUN powershell Invoke-WebRequest -Uri https://repo.msys2.org/msys/x86_64/libopenssl-3.1.4-1-x86_64.pkg.tar.zst -OutFile $Env:TEMP\libopenssl-3.1.4-1-x86_64.pkg.tar.zst
79-
RUN powershell zstd -d $Env:TEMP\libopenssl-3.1.4-1-x86_64.pkg.tar.zst -o $Env:TEMP\libopenssl-3.1.4-1-x86_64.pkg.tar
77+
# Install libopenssl 3.5.2-1 needed for rsync 3.2.7.
78+
RUN powershell Invoke-WebRequest -Uri https://repo.msys2.org/msys/x86_64/libopenssl-3.5.2-1-x86_64.pkg.tar.zst -OutFile $Env:TEMP\libopenssl-3.5.2-1-x86_64.pkg.tar.zst
79+
RUN powershell zstd -d $Env:TEMP\libopenssl-3.5.2-1-x86_64.pkg.tar.zst -o $Env:TEMP\libopenssl-3.5.2-1-x86_64.pkg.tar
8080
RUN powershell mkdir "C:\LibOpenSSL"
81-
RUN powershell tar -xvf $Env:TEMP\libopenssl-3.1.4-1-x86_64.pkg.tar -C "C:\LibOpenSSL"
81+
RUN powershell tar -xvf $Env:TEMP\libopenssl-3.5.2-1-x86_64.pkg.tar -C "C:\LibOpenSSL"
8282

8383
# Install libxxhash 0.8.3 needed for rsync 3.2.7.
8484
RUN powershell Invoke-WebRequest -Uri https://repo.msys2.org/msys/x86_64/libxxhash-0.8.3-1-x86_64.pkg.tar.zst -OutFile $Env:TEMP\libxxhash-0.8.3-1-x86_64.pkg.tar.zst

0 commit comments

Comments
 (0)