8 lines
336 B
Docker
8 lines
336 B
Docker
FROM fedora:39
|
|
RUN dnf update -y
|
|
RUN dnf install -y git
|
|
RUN dnf install -y ninja-build make cmake gcc-c++ gcc clang-tools-extra clang-devel clang
|
|
RUN dnf install -y gtest-devel gtest
|
|
RUN dnf install -y arm-none-eabi-gcc-cs arm-none-eabi-gcc-cs-c++ arm-none-eabi-binutils-cs.x86_64 arm-none-eabi-newlib.noarch
|
|
|
|
ENTRYPOINT [ "/bin/bash" ] |