util/docker/coreboot-sdk: Remove Python 2 package
Debian removed Python 2 from their Sid repository and so it needs to be removed from the Dockerfile as well. Built and tested the Dockerfile with Python 2 removed. Still works. Change-Id: If4e298dc275c1dfaf57cd4c3f8e5f89410318ec0 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/71711 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
This commit is contained in:
parent
d80e6f2eca
commit
0fb774024d
|
@ -68,7 +68,6 @@ RUN \
|
|||
patch \
|
||||
pbzip2 \
|
||||
pkg-config \
|
||||
python2 \
|
||||
python3 \
|
||||
qemu-system-arm \
|
||||
qemu-system-misc \
|
||||
|
@ -84,7 +83,7 @@ RUN \
|
|||
xz-utils \
|
||||
zlib1g-dev \
|
||||
&& apt-get clean \
|
||||
&& update-alternatives --install /usr/bin/python python /usr/bin/python2 1 \
|
||||
&& update-alternatives --install /usr/bin/python python /usr/bin/python3 1 \
|
||||
&& ln -s /usr/bin/automake /usr/bin/automake-1.15 \
|
||||
&& ln -s /usr/bin/aclocal /usr/bin/aclocal-1.15
|
||||
|
||||
|
|
Loading…
Reference in New Issue