# [build] Ubuntu 16

FROM ubuntu:xenial AS mcode

RUN apt-get update -qq \
  && apt-get -y install --no-install-recommends \
            gnat gcc make zlib1g-dev \
  && apt-get autoclean && apt-get clean && apt-get autoremove


FROM mcode AS llvm-3.9

RUN apt-get update -qq \
  && apt-get -y install --no-install-recommends \
            llvm-3.9-dev clang-3.9 \
  && apt-get autoclean && apt-get clean && apt-get autoremove
