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

pin docker to 5.0.3 #54

Merged
merged 1 commit into from
Nov 15, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
mkdir ~/cekit${{ env.CEKIT_VERSION }}
virtualenv ~/cekit${{ env.CEKIT_VERSION }}
. ~/cekit${{ env.CEKIT_VERSION }}/bin/activate
pip install cekit==${{ env.CEKIT_VERSION }} docker docker-squash odcs behave lxml
pip install cekit==${{ env.CEKIT_VERSION }} docker==5.0.3 docker-squash odcs behave lxml urllib3==1.26.15 packaging==21.3
- name: install s2i binary
run: |
echo ===== Installing s2i from ${{ env.S2I_URL }} =====
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
mkdir ~/cekit${{ env.CEKIT_VERSION }}
python3 -m venv ~/cekit${{ env.CEKIT_VERSION }}
. ~/cekit${{ env.CEKIT_VERSION }}/bin/activate
pip install cekit==${{ env.CEKIT_VERSION }} docker docker-squash odcs behave lxml
pip install cekit==${{ env.CEKIT_VERSION }} docker==5.0.3 docker-squash odcs behave lxml urllib3==1.26.15 packaging==21.3
- name: install s2i binary
run: |
echo ===== Installing s2i from ${{ env.S2I_URL }} =====
Expand Down
2 changes: 1 addition & 1 deletion .one-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ containerize:
mkdir ~/cekit${CEKIT_VERSION}
python3 -m venv ~/cekit${CEKIT_VERSION}
pip3 install --upgrade pip
pip3 install cekit==${CEKIT_VERSION} docker docker-squash odcs behave lxml setuptools_rust
pip3 install cekit==${CEKIT_VERSION} docker==5.0.3 docker-squash odcs behave lxml setuptools_rust urllib3==1.26.15 packaging==21.3
. ~/cekit${CEKIT_VERSION}/bin/activate
echo "***** Installed CEKIT version ${CEKIT_VERSION} *****"
cekit --version
Expand Down
Loading