summaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
blob: 6e9d870dbe79f60889fcad9cce78de9e3773a1a3 (plain)
1
2
3
4
5
6
7
8
FROM ubuntu:bionic

RUN apt-get update && apt-get install -y curl gnupg2 git python3
RUN echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list && \
	curl https://bazel.build/bazel-release.pub.gpg | apt-key add -
RUN apt-get update && apt-get install -y bazel && apt-get clean

WORKDIR /gvisor