File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,10 @@ RUN ARCH=$(uname -m) ; echo $ARCH \
1313
1414FROM base AS executor-img
1515
16- RUN ARCH=$(uname -m) ; echo $ARCH ; \
17- if [[ $ARCH == "ppc64le" ]] ; then \
18- echo "Downloading https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/36.20220906.3.1/ppc64le/fedora-coreos-36.20220906.3.1-qemu.ppc64le.qcow2.xz" && \
19- curl -s -o coreos_production_qemu_image.qcow2.xz https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/36.20220906.3.1/ppc64le/fedora-coreos-36.20220906.3.1-qemu.ppc64le.qcow2.xz && \
20- unxz coreos_production_qemu_image.qcow2.xz ; \
21- else \
22- echo $ARCH && \
16+ RUN ARCH=$(uname -m) ; \
2317 echo "Downloading" $(cat stable.json | jq -r --arg arch "$ARCH" '.architectures[$arch].artifacts.qemu.formats."qcow2.xz".disk.location' ) && \
2418 curl -s -o coreos_production_qemu_image.qcow2.xz $(cat stable.json | jq -r --arg arch "$ARCH" '.architectures[$arch].artifacts.qemu.formats."qcow2.xz".disk.location' ) && \
25- unxz coreos_production_qemu_image.qcow2.xz \
26- ; fi
19+ unxz coreos_production_qemu_image.qcow2.xz
2720
2821FROM base AS final
2922ARG channel=stable
You can’t perform that action at this time.
0 commit comments