54ab356f9f
Upcoming support of sbuild in Isar requires some additional tools to be preinstalled. Also, `builder` user should be in `sbuild` group. Additionally, to use external volume for schroot overlay because the 'upper' overlayfs layer of sbuild can't be based on another overlayfs filesystem that happens in case of using Docker. Signed-off-by: Uladzimir Bely <ubely@ilbers.de> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
22 lines
816 B
Docker
22 lines
816 B
Docker
# This image builds Isar jobs using the kas tool
|
|
|
|
ARG KAS_TAG=latest
|
|
|
|
FROM ghcr.io/siemens/kas/kas:$KAS_TAG
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
ENV LC_ALL=en_US.UTF-8
|
|
RUN apt-get update && \
|
|
apt-get install -y -f --no-install-recommends \
|
|
autoconf automake gdisk libtool bash-completion \
|
|
reprepro python3 binfmt-support e2fsprogs \
|
|
umoci skopeo \
|
|
git-buildpackage pristine-tar schroot sbuild debhelper \
|
|
multistrap qemu-user-static debootstrap quilt && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
RUN sed -i 's|\tGOSU="gosu builder"|\0\n\tsbuild-adduser builder|' /kas/container-entrypoint
|
|
RUN sed -i 's|#!/bin/bash|\0\n\nupdate-binfmts --enable \&\& [ -f /proc/sys/fs/binfmt_misc/status ]|' /kas/container-entrypoint
|