diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-06-17 10:36:53 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-08-03 18:35:46 +0000 |
commit | fda10a44b6cf327f9a18193661f30672b059c12b (patch) | |
tree | 3942e6ea4d9fe00e5ff91e0a89b594233779d6c8 /util/docker | |
parent | d2e7c0f30d288e1f444ba0411cf0a419e312aca5 (diff) |
util/docker: Remove manual symlink python3 to python
Debian sid symlinks already python3 to python.
Change-Id: Ibc3b2b047df7e1066624d4dd8aa9664ab1869222
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75875
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'util/docker')
-rw-r--r-- | util/docker/coreboot-sdk/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/docker/coreboot-sdk/Dockerfile b/util/docker/coreboot-sdk/Dockerfile index cca1b0a2eb..3435b06862 100644 --- a/util/docker/coreboot-sdk/Dockerfile +++ b/util/docker/coreboot-sdk/Dockerfile @@ -67,6 +67,7 @@ RUN \ pbzip2 \ pkg-config \ python3 \ + python-is-python3 \ qemu-system-arm \ qemu-system-misc \ qemu-system-ppc \ @@ -80,7 +81,6 @@ RUN \ xz-utils \ zlib1g-dev \ && apt-get clean \ - && 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 |