• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#========================
2# Bazel installation
3RUN echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" > /etc/apt/sources.list.d/bazel.list
4RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add -
5RUN apt-get -y update && apt-get -y install bazel=0.15.0 && apt-get clean
6