Newer
Older
Dockerfiles / Dockerfile.documentation
# - Base --------------------------------------

# Setup base operating system
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 cmake

# -------------------------------------------

# Install Documentation Tools
RUN apt-get install -y doxygen graphviz plantuml