# [run] Ubuntu 18 FROM ubuntu:bionic AS mcode RUN apt-get update -qq \ && apt-get -y install --no-install-recommends \ libgnat-7 gcc libc6-dev \ && apt-get autoclean && apt-get clean && apt-get autoremove FROM mcode AS llvm-5.0 RUN apt-get update -qq \ && apt-get -y install --no-install-recommends \ libllvm5.0 zlib1g-dev \ && apt-get autoclean && apt-get clean && apt-get autoremove