gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/images/benchmarks/build-grpc/Dockerfile.aarch64 (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 RUN wget https://github.com/bazelbuild/bazel/releases/download/4.2.1/bazel-4.2.1-linux-arm64 18 RUN mv bazel-4.2.1-linux-arm64 /bin/bazel && chmod +x /bin/bazel 19 20 RUN mkdir grpc && cd grpc \ 21 && git init && git remote add origin https://github.com/grpc/grpc.git \ 22 && git fetch --depth 1 origin a672e22bd1e10b3ff2a91aaae5aee3a65cc95bfe && git checkout FETCH_HEAD