blob: 1a3430ad41f58f2786239e9484d49740f3722c3b [file] [log] [blame]
FROM linux-x64x11-xenial
ARG DEBIAN_FRONTEND=noninteractive
RUN apt update -qqy \
&& apt install -qqy --no-install-recommends clang-3.6 \
&& apt-get clean autoclean \
&& apt-get autoremove -y --purge \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& rm -rf /var/lib/{apt,dpkg,cache,log} \
&& echo "Done"
CMD /code/cobalt/build/gyp_cobalt -v -C ${CONFIG} ${PLATFORM} && \
ninja -v -j ${NINJA_PARALLEL} -C ${OUTDIR}/${PLATFORM}_${CONFIG} ${TARGET:-cobalt_deploy}