Skip to content

Commit 559ece7

Browse files
build script comment manylinux check
1 parent 607ca1d commit 559ece7

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/scripts/s390x-ci/self-hosted-builder/actions-runner.Dockerfile

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,17 @@ COPY fs/ /
4545
RUN chmod +x /usr/bin/actions-runner /usr/bin/entrypoint
4646

4747
# install podman
48-
RUN apt -y install podman podman-docker
48+
# Add Podman repository and install Podman
49+
RUN apt-get update && \
50+
apt-get -y install software-properties-common && \
51+
. /etc/os-release && \
52+
echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$ID_$VERSION_ID/ /" > /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list && \
53+
curl -fsSL https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable/$ID_$VERSION_ID/Release.key | gpg --dearmor -o /usr/share/keyrings/libcontainers.gpg && \
54+
apt-get update && \
55+
apt-get -y install podman podman-docker && \
56+
apt-get clean && \
57+
rm -rf /var/lib/apt/lists/*
58+
4959

5060
# amd64 Github Actions Runner.
5161
RUN useradd -m actions-runner

0 commit comments

Comments
 (0)