gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/images/benchmarks/build-grpc/Dockerfile.x86_64 (about) 1 FROM ubuntu:18.04 2 3 RUN set -x \ 4 && apt-get update \ 5 && apt-get install -y \ 6 autoconf \ 7 build-essential \ 8 clang \ 9 curl \ 10 libtool \ 11 pkg-config \ 12 git \ 13 unzip \ 14 wget \ 15 && rm -rf /var/lib/apt/lists/* 16 17 18 RUN wget https://github.com/bazelbuild/bazel/releases/download/4.2.1/bazel-4.2.1-installer-linux-x86_64.sh 19 RUN chmod +x bazel-4.2.1-installer-linux-x86_64.sh 20 RUN ./bazel-4.2.1-installer-linux-x86_64.sh 21 22 RUN mkdir grpc && cd grpc \ 23 && git init && git remote add origin https://github.com/grpc/grpc.git \ 24 && git fetch --depth 1 origin a672e22bd1e10b3ff2a91aaae5aee3a65cc95bfe && git checkout FETCH_HEAD