da62e0bfbd
For this script, this is almost straightforward - except that we need to extract the static KAS_BUILD_SYSTEM config setting from the selected Kconfig file so that the correct container image and mode is chosen. Two new dependencies need to be added to the container image. While python3-newt can come from Debian, kconfiglib only exists as Python package. To make sure we are not pulling any other packages via pip, install kconfiglib upfront. It has no own dependencies, thus can use --no-deps as well. Finally, the container-entrypoint needs to be updated to make it aware of the new plugin. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
44 lines
1.8 KiB
Docker
44 lines
1.8 KiB
Docker
# This image builds Yocto jobs using the kas tool
|
|
|
|
FROM debian:buster-slim
|
|
|
|
ARG TARGETPLATFORM
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN echo 'deb http://deb.debian.org/debian buster-backports main' > /etc/apt/sources.list.d/buster-backports.list && \
|
|
apt-get update && \
|
|
apt-get install -y locales && \
|
|
localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
|
|
ENV LANG=en_US.utf8
|
|
|
|
RUN apt-get install --no-install-recommends -y \
|
|
gawk wget git-core diffstat unzip texinfo \
|
|
build-essential chrpath socat cpio python python3 python3-pip python3-pexpect \
|
|
xz-utils debianutils iputils-ping python3-git python3-jinja2 libegl1-mesa libsdl1.2-dev \
|
|
pylint3 xterm \
|
|
python3-setuptools python3-wheel python3-yaml python3-distro python3-jsonschema python3-newt \
|
|
gosu lsb-release file vim less procps tree tar bzip2 zstd bc tmux libncurses-dev \
|
|
dosfstools mtools parted lz4 \
|
|
git-lfs/buster-backports mercurial iproute2 ssh-client curl rsync gnupg awscli sudo && \
|
|
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
|
|
apt-get install --no-install-recommends -y gcc-multilib g++-multilib syslinux; \
|
|
fi && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
COPY contrib/oe-git-proxy /usr/local/bin/
|
|
ENV GIT_PROXY_COMMAND="oe-git-proxy" \
|
|
NO_PROXY="*"
|
|
|
|
COPY . /kas
|
|
RUN pip3 --proxy=$https_proxy install --no-deps kconfiglib && \
|
|
pip3 --proxy=$https_proxy install --no-deps /kas && kas --help
|
|
|
|
RUN echo "builder ALL=NOPASSWD: ALL" > /etc/sudoers.d/builder-nopasswd && \
|
|
chmod 660 /etc/sudoers.d/builder-nopasswd
|
|
|
|
RUN echo "Defaults env_keep += \"ftp_proxy http_proxy https_proxy no_proxy\"" \
|
|
> /etc/sudoers.d/env_keep && chmod 660 /etc/sudoers.d/env_keep
|
|
|
|
ENTRYPOINT ["/kas/container-entrypoint"]
|