debian11.docker (636B)
1# 2# Docker multiarch cross-compiler target 3# 4# This docker target uses the current development version of Debian as 5# a base for cross compilers for building test binaries. We won't 6# attempt to build QEMU on it yet given it is still in development. 7# 8# On its own you can't build much but the docker-foo-cross targets 9# build on top of the base debian image. 10# 11FROM docker.io/library/debian:bullseye-slim 12 13# Duplicate deb line as deb-src 14RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list 15 16# Install common build utilities 17RUN apt update && \ 18 DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata