FROM ubuntu:bionic

RUN apt-get update -qq
RUN apt-get install -y \
    build-essential  \
    clang \
    cmake \
    curl \
    git \
    libgl-dev \
    libglu-dev \
    libpython3-dev \
    lsb-release \
    pkg-config \
    python3 \
    python3-distutils \
    software-properties-common \
    sudo
