Skip to content

Commit 34aa8f7

Browse files
committed
try adding a docker socker
1 parent 021dab3 commit 34aa8f7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build-python.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
working-directory: python
1212
container:
1313
image: quay.io/pypa/manylinux_2_28_x86_64
14+
options: --volume /var/run/docker.sock:/var/run/docker.sock
1415
env:
1516
PLAT: manylinux_2_28_x86_64
1617
PYBIN: "/opt/python/${{ matrix.python_dir }}/bin"
@@ -31,6 +32,13 @@ jobs:
3132
- name: "Checkout"
3233
uses: actions/checkout@v4
3334

35+
- name: "Install Docker CLI"
36+
run: |
37+
yum install -y dnf
38+
dnf -y install yum-utils
39+
dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
40+
dnf -y install docker-ce-cli
41+
3442
- name: "Install Rust 1.78.0"
3543
uses: actions-rs/toolchain@v1
3644
with:

0 commit comments

Comments
 (0)