Merge pull request #1693 from openmv/docker_update

tools/docker: Install Python3.
This commit is contained in:
Ibrahim Abdelkader 2022-07-18 16:23:16 +02:00 committed by GitHub
commit 828462fcda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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