1# THIS FILE WAS AUTO-GENERATED 2# 3# $ lcitool dockerfile --layers all --cross-arch armv7l debian-12 qemu 4# 5# https://gitlab.com/libvirt/libvirt-ci 6 7FROM docker.io/library/debian:12-slim 8 9RUN export DEBIAN_FRONTEND=noninteractive && \ 10 apt-get update && \ 11 apt-get install -y eatmydata && \ 12 eatmydata apt-get dist-upgrade -y && \ 13 eatmydata apt-get install --no-install-recommends -y \ 14 bash \ 15 bc \ 16 bison \ 17 bsdextrautils \ 18 bzip2 \ 19 ca-certificates \ 20 ccache \ 21 dbus \ 22 debianutils \ 23 diffutils \ 24 exuberant-ctags \ 25 findutils \ 26 flex \ 27 gcc \ 28 gcovr \ 29 gettext \ 30 git \ 31 hostname \ 32 libglib2.0-dev \ 33 libpcre2-dev \ 34 libsndio-dev \ 35 libspice-protocol-dev \ 36 llvm \ 37 locales \ 38 make \ 39 meson \ 40 mtools \ 41 ncat \ 42 ninja-build \ 43 openssh-client \ 44 pkgconf \ 45 python3 \ 46 python3-numpy \ 47 python3-opencv \ 48 python3-pillow \ 49 python3-pip \ 50 python3-sphinx \ 51 python3-sphinx-rtd-theme \ 52 python3-venv \ 53 python3-yaml \ 54 rpm2cpio \ 55 sed \ 56 socat \ 57 sparse \ 58 swtpm \ 59 tar \ 60 tesseract-ocr \ 61 tesseract-ocr-eng \ 62 xorriso \ 63 zstd && \ 64 eatmydata apt-get autoremove -y && \ 65 eatmydata apt-get autoclean -y && \ 66 sed -Ei 's,^# (en_US\.UTF-8 .*)$,\1,' /etc/locale.gen && \ 67 dpkg-reconfigure locales && \ 68 rm -f /usr/lib*/python3*/EXTERNALLY-MANAGED 69 70ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers" 71ENV LANG "en_US.UTF-8" 72ENV MAKE "/usr/bin/make" 73ENV NINJA "/usr/bin/ninja" 74ENV PYTHON "/usr/bin/python3" 75 76RUN export DEBIAN_FRONTEND=noninteractive && \ 77 dpkg --add-architecture armhf && \ 78 eatmydata apt-get update && \ 79 eatmydata apt-get dist-upgrade -y && \ 80 eatmydata apt-get install --no-install-recommends -y dpkg-dev && \ 81 eatmydata apt-get install --no-install-recommends -y \ 82 gcc-arm-linux-gnueabihf \ 83 libaio-dev:armhf \ 84 libasan6:armhf \ 85 libasound2-dev:armhf \ 86 libattr1-dev:armhf \ 87 libbpf-dev:armhf \ 88 libbrlapi-dev:armhf \ 89 libbz2-dev:armhf \ 90 libc6-dev:armhf \ 91 libcacard-dev:armhf \ 92 libcap-ng-dev:armhf \ 93 libcapstone-dev:armhf \ 94 libcmocka-dev:armhf \ 95 libcurl4-gnutls-dev:armhf \ 96 libdaxctl-dev:armhf \ 97 libdrm-dev:armhf \ 98 libepoxy-dev:armhf \ 99 libfdt-dev:armhf \ 100 libffi-dev:armhf \ 101 libfuse3-dev:armhf \ 102 libgbm-dev:armhf \ 103 libgcrypt20-dev:armhf \ 104 libglib2.0-dev:armhf \ 105 libglusterfs-dev:armhf \ 106 libgnutls28-dev:armhf \ 107 libgtk-3-dev:armhf \ 108 libibverbs-dev:armhf \ 109 libiscsi-dev:armhf \ 110 libjemalloc-dev:armhf \ 111 libjpeg62-turbo-dev:armhf \ 112 libjson-c-dev:armhf \ 113 liblttng-ust-dev:armhf \ 114 liblzo2-dev:armhf \ 115 libncursesw5-dev:armhf \ 116 libnfs-dev:armhf \ 117 libnuma-dev:armhf \ 118 libpam0g-dev:armhf \ 119 libpipewire-0.3-dev:armhf \ 120 libpixman-1-dev:armhf \ 121 libpng-dev:armhf \ 122 libpulse-dev:armhf \ 123 librbd-dev:armhf \ 124 librdmacm-dev:armhf \ 125 libsasl2-dev:armhf \ 126 libsdl2-dev:armhf \ 127 libsdl2-image-dev:armhf \ 128 libseccomp-dev:armhf \ 129 libselinux1-dev:armhf \ 130 libslirp-dev:armhf \ 131 libsnappy-dev:armhf \ 132 libspice-server-dev:armhf \ 133 libssh-gcrypt-dev:armhf \ 134 libsystemd-dev:armhf \ 135 libtasn1-6-dev:armhf \ 136 libubsan1:armhf \ 137 libudev-dev:armhf \ 138 liburing-dev:armhf \ 139 libusb-1.0-0-dev:armhf \ 140 libusbredirhost-dev:armhf \ 141 libvdeplug-dev:armhf \ 142 libvirglrenderer-dev:armhf \ 143 libvte-2.91-dev:armhf \ 144 libxdp-dev:armhf \ 145 libxen-dev:armhf \ 146 libzstd-dev:armhf \ 147 nettle-dev:armhf \ 148 systemtap-sdt-dev:armhf \ 149 zlib1g-dev:armhf && \ 150 eatmydata apt-get autoremove -y && \ 151 eatmydata apt-get autoclean -y && \ 152 mkdir -p /usr/local/share/meson/cross && \ 153 printf "[binaries]\n\ 154c = '/usr/bin/arm-linux-gnueabihf-gcc'\n\ 155ar = '/usr/bin/arm-linux-gnueabihf-gcc-ar'\n\ 156strip = '/usr/bin/arm-linux-gnueabihf-strip'\n\ 157pkgconfig = '/usr/bin/arm-linux-gnueabihf-pkg-config'\n\ 158\n\ 159[host_machine]\n\ 160system = 'linux'\n\ 161cpu_family = 'arm'\n\ 162cpu = 'armhf'\n\ 163endian = 'little'\n" > /usr/local/share/meson/cross/arm-linux-gnueabihf && \ 164 dpkg-query --showformat '${Package}_${Version}_${Architecture}\n' --show > /packages.txt && \ 165 mkdir -p /usr/libexec/ccache-wrappers && \ 166 ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/arm-linux-gnueabihf-cc && \ 167 ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/arm-linux-gnueabihf-gcc 168 169ENV ABI "arm-linux-gnueabihf" 170ENV MESON_OPTS "--cross-file=arm-linux-gnueabihf" 171ENV QEMU_CONFIGURE_OPTS --cross-prefix=arm-linux-gnueabihf- 172ENV DEF_TARGET_LIST arm-softmmu,arm-linux-user 173# As a final step configure the user (if env is defined) 174ARG USER 175ARG UID 176RUN if [ "${USER}" ]; then \ 177 id ${USER} 2>/dev/null || useradd -u ${UID} -U ${USER}; fi 178