tools/docker: Install Python3.

* Fixes #1690
This commit is contained in:
iabdalkader 2022-07-18 16:01:03 +02:00
parent 3b14278431
commit 53fe29ad9b

View File

@ -5,7 +5,7 @@ ENV ARCH $DAPPER_HOST_ARCH
ENV DAPPER_OUTPUT ./docker/build
ENV DAPPER_DOCKER_SOCKET true
ENV DAPPER_TARGET dapper
RUN apt update && apt install -y build-essential wget git python3 python
RUN apt update && apt install -y build-essential wget git python3 python-is-python3
ENV GCC_URL="https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2"
RUN mkdir ./gcc
RUN wget --no-check-certificate -O - ${GCC_URL} | tar --strip-components=1 -jx -C ./gcc