Merge pull request #3205 from alicefr/fix_qemu_dockerfile

Missing s390x in the switch for qemu Dockerfile
This commit is contained in:
Rolf Neugebauer 2018-12-20 23:45:14 +00:00 committed by GitHub
commit 5b5f272890
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,6 +12,9 @@ RUN apk add --no-cache --initdb -p /out \
aarch64) \ aarch64) \
apk add --no-cache --initdb -p /out qemu-system-aarch64; \ apk add --no-cache --initdb -p /out qemu-system-aarch64; \
;; \ ;; \
s390x) \
apk add --no-cache --initdb -p /out qemu-system-s390x; \
;; \
esac esac
RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache