File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
.github/scripts/s390x-ci/self-hosted-builder Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -53,12 +53,17 @@ RUN chmod +x /usr/bin/actions-runner /usr/bin/entrypoint
5353
5454
5555# Install Podman (v4.6.0) for container management
56- RUN apt-get update && apt-get install -y \
57- make \
58- gcc \
59- libseccomp-dev \
60- libapparmor-dev \
61- && apt-get clean && rm -rf /var/lib/apt/lists/*
56+ RUN echo "deb [arch=ppc64el] http://ports.ubuntu.com/ jammy main restricted universe multiverse" > /etc/apt/sources.list && \
57+ echo "deb [arch=ppc64el] http://ports.ubuntu.com/ jammy-updates main restricted universe multiverse" >> /etc/apt/sources.list && \
58+ echo "deb [arch=ppc64el] http://ports.ubuntu.com/ jammy-security main restricted universe multiverse" >> /etc/apt/sources.list && \
59+ apt-get update && apt-get install -y \
60+ make \
61+ gcc \
62+ libseccomp-dev \
63+ libapparmor-dev && \
64+ apt-get clean && rm -rf /var/lib/apt/lists/*
65+
66+
6267RUN git clone https://github.com/containers/podman.git && \
6368 cd podman && \
6469 git checkout v4.6.0 && \
You can’t perform that action at this time.
0 commit comments