Newer
Older
Dockerfiles / Dockerfile.lint
@John Ryland John Ryland on 29 Jun 2023 343 bytes update to 22.04
FROM ubuntu:22.04
RUN apt-get update

# Set noninteractive installation
ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=Australia/Brisbane

# Install Base Build Tools
RUN apt-get install -y make git python3

# Install Tools
RUN apt-get install -y cmake doxygen graphviz

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