1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 15:12:36 +02:00

manibuilder: Switch Dockerfile.anita to Bullseye and Python 3

Basing the image on debian:stable turned out to be a bad idea once
stable switched to Bullseye. Instead of falling back to Buster, we
move forward to Bullseye and pin that version. Hopefully that works
for some years again.

With Bullseye it turned out to be easier to do things with Python 3,
so we use that now. To ease future changes, we use tinier RUN and ARG
steps which creates more intermediate images. Such intermediate images
can be reused if some later step is changed in the Dockerfile.

Change-Id: Ic064ddad807329a9bd81085775190615ad89273f
Signed-off-by: Nico Huber <nico.h@gmx.de>
Ticket: https://ticket.coreboot.org/issues/383
Reviewed-on: https://review.coreboot.org/c/flashrom/+/65633
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Nico Huber 2022-07-04 10:33:05 +00:00 committed by Felix Singer
parent 4b62d8d94c
commit 79efb45da9

View File

@ -1,22 +1,22 @@
FROM debian:stable
FROM debian:bullseye
ARG PKG_PATH=http://cdn.netbsd.org/pub/pkgsrc/packages/NetBSD/amd64/7.1/All
ARG INST_IMG=http://ftp.de.netbsd.org/pub/NetBSD/NetBSD-7.1/amd64/
ARG DISK_SIZE=1G
ARG INSTALL_MEM=128M
ARG EXTRA_PKG=""
RUN \
useradd -p locked -m mani && \
apt-get -qq update && \
apt-get -qq upgrade && \
apt-get -qq dist-upgrade && \
apt-get -qqy install git python python-pexpect \
genisoimage qemu-system && \
apt-get clean && \
git clone https://github.com/gson1703/anita.git && \
cd anita && python setup.py install
apt-get -qqy install git python-is-python3 python3-pexpect \
python3-distutils genisoimage qemu-system && \
apt-get clean
RUN git clone https://github.com/gson1703/anita.git
RUN cd anita && python setup.py install
ARG DISK_SIZE=1G
ARG INSTALL_MEM=128M
USER mani
RUN cd && mkdir .ccache && chown mani:mani .ccache && \
anita --sets kern-GENERIC,modules,base,etc,comp \
@ -24,6 +24,7 @@ RUN cd && mkdir .ccache && chown mani:mani .ccache && \
install ${INST_IMG} && \
rm -rf work-*/download
ARG EXTRA_PKG=""
ARG RUNTIME_MEM=128M
RUN cd && anita --persist --memory-size=${RUNTIME_MEM} --run \
"echo 'dhcpcd' >init && \