Sign inSign up

chrisdsa/firmware_cicd

By chrisdsa

Updated over 4 years ago

Image to build and test firmware project. Based on ubuntu

Image
0

624

chrisdsa/firmware_cicd repository overview

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

Tag summary

Content type

Image

Digest

Size

436.4 MB

Last updated

over 4 years ago

docker pull chrisdsa/firmware_cicd:21.10