We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 021dab3 commit 34aa8f7Copy full SHA for 34aa8f7
.github/workflows/build-python.yml
@@ -11,6 +11,7 @@ jobs:
11
working-directory: python
12
container:
13
image: quay.io/pypa/manylinux_2_28_x86_64
14
+ options: --volume /var/run/docker.sock:/var/run/docker.sock
15
env:
16
PLAT: manylinux_2_28_x86_64
17
PYBIN: "/opt/python/${{ matrix.python_dir }}/bin"
@@ -31,6 +32,13 @@ jobs:
31
32
- name: "Checkout"
33
uses: actions/checkout@v4
34
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
+
42
- name: "Install Rust 1.78.0"
43
uses: actions-rs/toolchain@v1
44
with:
0 commit comments