Newer
Older
Dockerfiles / Dockerfile.build
@John Ryland John Ryland on 21 Jun 2021 387 bytes add cmake and doxygen to the build tools
FROM ubuntu:16.04
RUN apt-get update

# Install Linting Tools
RUN apt-get install -y clang clang-tidy clang-format make git python3

# Install Build Tools
RUN apt-get install -y g++ gcc gdb flex bison
RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev
RUN apt-get install -y curl wget cmake
RUN apt-get install -y doxygen graphviz