aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tools/dockerfile/bazel.include
blob: c7714f56630df2e429049b2b3ae2d7c181ac6859 (plain)
1
2
3
4
5
6
#========================
# Bazel installation

RUN apt-get update && apt-get install -y wget && apt-get clean
RUN wget -q https://github.com/bazelbuild/bazel/releases/download/0.17.1/bazel-0.17.1-linux-x86_64 -O /usr/local/bin/bazel
RUN chmod 755 /usr/local/bin/bazel