From fac7b4614157d1bda702add757b765831c59c3ea Mon Sep 17 00:00:00 2001 From: Balazs Eszes Date: Sun, 28 Jan 2024 10:35:52 +0100 Subject: [PATCH] Reverting to default Python --- .github/workflows/build.yml | 9 +++++++++ Dockerfile | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6f82158..2010efa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,3 +15,12 @@ jobs: - name: Build image run: docker build . -t local + + - name: Test Python version + run: docker run -it local python --version + + - name: Test CMake version + run: docker run -it local cmake --version + + - name: Test ARM compiler version + run: docker run -it local arm-none-eabi-gcc --version diff --git a/Dockerfile b/Dockerfile index 35bfae1..706973e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu +FROM ubuntu:23.04 LABEL version="1.1.0" LABEL description="Image for building ARM embedded projects" @@ -21,7 +21,7 @@ RUN sh cmake-${cmake_version}-${cmake_platform}.sh --prefix=/opt/cmake --skip-li ENV PATH "$PATH:/opt/cmake/bin" # Install Python -RUN apt-get install -y python3.12 +# RUN apt-get install -y python3.11 # ARM GCC configuration ARG arm_archive="13.2.rel1"