We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8c5bf commit 28f988bCopy full SHA for 28f988b
.github/scripts/s390x-ci/self-hosted-builder/actions-runner.Dockerfile
@@ -47,7 +47,12 @@ RUN chmod +x /usr/bin/actions-runner /usr/bin/entrypoint
47
# install podman
48
# Add Podman repository and install Podman
49
50
-RUN apt-get install -y podman podman-docker
+# Clone and build Podman
51
+RUN git clone https://github.com/containers/podman.git && \
52
+ cd podman && \
53
+ git checkout v4.6.0 && \
54
+ make BUILDTAGS="seccomp apparmor" && \
55
+ make install
56
57
58
0 commit comments