diff options
author | Felix Singer <felixsinger@posteo.net> | 2023-01-06 08:02:50 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2023-04-01 11:01:07 +0000 |
commit | 0fb774024d222745d6c016bc179ca9d34b86def0 (patch) | |
tree | 032e8d849354aa41d484ef1dd97f9e3da4c30a9b /util | |
parent | d80e6f2ecaedf9bb06380c2a342a9d49b9b129f6 (diff) |
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>
Diffstat (limited to 'util')
-rw-r--r-- | util/docker/coreboot-sdk/Dockerfile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util/docker/coreboot-sdk/Dockerfile b/util/docker/coreboot-sdk/Dockerfile index e9ae5925dc..d645aa0b84 100644 --- a/util/docker/coreboot-sdk/Dockerfile +++ b/util/docker/coreboot-sdk/Dockerfile @@ -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 |