Image to build and test firmware project. Based on ubuntu
624
Dockerfile:
FROM ubuntu:21.10
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -qq update
RUN apt-get -qq install -y make gcc g++ gcovr catch2 pip git curl jq
#install latest cmake
ADD https://cmake.org/files/v3.20/cmake-3.20.0-linux-x86_64.sh /cmake-3.20.0-Linux-x86_64.sh
RUN mkdir /opt/cmake
RUN sh /cmake-3.20.0-Linux-x86_64.sh --prefix=/opt/cmake --skip-license
RUN ln -s /opt/cmake/bin/cmake /usr/local/bin/cmake
RUN cmake --version
Content type
Image
Digest
Size
436.4 MB
Last updated
over 4 years ago
docker pull chrisdsa/firmware_cicd:21.10