pitrou commented on code in PR #48996: URL: https://github.com/apache/arrow/pull/48996#discussion_r2741055053
########## ci/docker/python-wheel-windows-vs2022-base.dockerfile: ########## @@ -104,6 +104,21 @@ RUN choco install --no-progress -r -y git gzip ninja wget # Add UNIX tools to PATH RUN setx path "%path%;C:\Program Files\Git\usr\bin" +# Install git, wget, minio +RUN choco install --no-progress -r -y git wget +RUN curl https://dl.min.io/server/minio/release/windows-amd64/archive/minio.RELEASE.2025-01-20T14-49-07Z ` + --output "C:\Windows\Minio.exe" + +# Install the GCS testbench using a well-known Python version. +# NOTE: cannot use pipx's `--fetch-missing-python` because of +# https://github.com/pypa/pipx/issues/1521, therefore download Python ourselves. Review Comment: Ah, I think the image had some Python installed before. If choco works fine then we can probably keep it for now... -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
