Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Windows Container] Add unzip and lock pipenv/awscli versions in Windows docker images #3947

Merged
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
5 changes: 3 additions & 2 deletions docker/ci/config/windows-servercore-setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ cmake --version

# Install zip
scoop install zip
scoop install unzip

# Install docker
scoop install docker
Expand All @@ -214,10 +215,10 @@ wget https://bootstrap.pypa.io/get-pip.py -OutFile get-pip.py
python get-pip.py
pip --version
# Install pipenv
pip install pipenv
pip install pipenv==2023.6.12
pipenv --version
# Install awscli
pip install awscli
pip install awscli==1.22.12
aws --version
# Cleanup
pip cache remove *
Expand Down
Loading