FROM ubuntu:18.04 RUN apt-get update; apt-get install git clang clang-tidy clang-format zlib1g-dev libssl-dev libcurl4-openssl-dev wget \ ninja-build python3-pip zip -y RUN wget -O cmake-install https://github.com/Kitware/CMake/releases/download/v3.13.0/cmake-3.13.0-Linux-x86_64.sh; \ sh cmake-install --skip-license --prefix=/usr --exclude-subdirectory; RUN pip3 install --upgrade pip RUN git clone https://github.com/aws/aws-sdk-cpp.git RUN update-alternatives --set cc /usr/bin/clang RUN update-alternatives --set c++ /usr/bin/clang++