File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
.github/scripts/s390x-ci/self-hosted-builder Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,17 @@ COPY fs/ /
4545RUN 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.
5161RUN useradd -m actions-runner
You can’t perform that action at this time.
0 commit comments