d2718417e2
Reading the installation guide for podman, they reference opensuse.org as the official package repos for ubuntu: https://podman.io/getting-started/installation Using this repo allows us to pull in much newer version of podman on ubuntu. The current PPA package repo hasn't been updated since late 2019. Change-Id: Ie34419184925a4bcf30422a782e6a238c11f2319 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
12 lines
452 B
Docker
12 lines
452 B
Docker
FROM docker.io/upstream/image as first
|
|
ARG ZUUL_SIBLINGS=""
|
|
RUN echo "Zuul siblings: ${ZUUL_SIBLINGS}"
|
|
RUN cp /test-nonce /test-nonce-is-there
|
|
COPY . /tmp/src
|
|
RUN cp -a /tmp/src/.zuul-siblings/opendev.org/project/fake-sibling/file /target
|
|
RUN cp -a /tmp/src/.zuul-siblings/openstack.org/project/fake-sibling/file /target
|
|
CMD echo "Zuul container test"; sleep infinity
|
|
|
|
FROM first as second
|
|
RUN echo "This is just to test that loops with siblings work"
|