aa3d109f0b
Additionally requires to run the container with --privileged - not nice but unavoidable right now, see also https://groups.google.com/forum/#!topic/isar-users/Un75m49InjY Also note that running containers with different binfmt settings concurrently will cause troubles. Same for the case that the host requires deviating settings. Use carefully. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
25 lines
1.1 KiB
Docker
25 lines
1.1 KiB
Docker
FROM kasproject/kas:latest
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN echo 'deb http://deb.debian.org/debian jessie-backports main' >> /etc/apt/sources.list.d/backports.list && \
|
|
echo 'deb http://deb.debian.org/debian stretch main' >> /etc/apt/sources.list.d/backports.list
|
|
|
|
ENV LC_ALL=en_US.UTF-8
|
|
RUN apt-get update && \
|
|
apt-get install -y -f --no-install-recommends --target-release jessie \
|
|
autoconf automake gdisk libtool bash-completion \
|
|
sudo grub2 grub-efi-amd64-bin grub-efi-ia32-bin qemu-user-static \
|
|
reprepro python3 binfmt-support && \
|
|
apt-get install -y -f --no-install-recommends --target-release jessie-backports \
|
|
e2fsprogs && \
|
|
apt-get install -y -f --no-install-recommends --target-release stretch \
|
|
multistrap && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp*
|
|
|
|
RUN echo "builder ALL=NOPASSWD: ALL" > /etc/sudoers.d/builder-nopasswd && \
|
|
chmod 660 /etc/sudoers.d/builder-nopasswd
|
|
|
|
RUN sed -i "s|#!/bin/bash|\0\n\nupdate-binfmts --enable|" /kas/docker-entrypoint
|