f449ae20fb
The buildx patch unfortunately changed the logic associated with siblings to set up siblings in a loop one time, rather than to do a loop of "set up siblings, build, cleanup siblings". This causes builds to fail when they're using siblings with an error about siblings dir not having been cleaned up. Change-Id: I3c45bfa77ec9f2609689e04044c18f066adc9741
11 lines
408 B
Docker
11 lines
408 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 .zuul-siblings/opendev.org/project/fake-sibling/file /target
|
|
COPY .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"
|