Newer
Older
Dockerfiles / Dockerfile.lint
@John Ryland John Ryland on 2 Jul 2023 476 bytes undo work around
FROM ubuntu:22.04

# Work around for 16.04 host which has old docker version
# RUN sed -i -e 's/ { / /' -e 's/ };//' /etc/apt/apt.conf.d/docker-clean

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