Skip to content

Commit

Permalink
Reverting to default Python
Browse files Browse the repository at this point in the history
  • Loading branch information
c4deszes committed Jan 28, 2024
1 parent 1a0e9b6 commit fac7b46
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu
FROM ubuntu:23.04

LABEL version="1.1.0"
LABEL description="Image for building ARM embedded projects"
Expand All @@ -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"
Expand Down

0 comments on commit fac7b46

Please sign in to comment.