FROM ubuntu:18.04

RUN apt-get update && apt-get -y install \
    git \
    cmake \
    make \
    g++ \
  && rm -rf /var/lib/apt/lists/*
