FROM ubuntu:20.04

RUN apt-get update && \
    DEBIAN_FRONTEND=noninteractive apt-get install -y \
        build-essential \
        clang-format \
        clang-tidy \
        cmake \
        doxygen \
        g++ \
        git \
        lua-check \
        ninja-build && \
    rm -rf /var/lib/apt/lists/*
