gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/images/benchmarks/absl/Dockerfile.x86_64 (about)

     1  FROM ubuntu:18.04
     2  
     3  RUN set -x \
     4          && apt-get update \
     5          && apt-get install -y \
     6              wget \
     7              git \
     8              pkg-config \
     9              zip \
    10              g++ \
    11              zlib1g-dev \
    12              unzip \
    13              python3 \
    14          && rm -rf /var/lib/apt/lists/*
    15  
    16  RUN wget https://github.com/bazelbuild/bazel/releases/download/0.27.0/bazel-0.27.0-installer-linux-x86_64.sh
    17  RUN chmod +x bazel-0.27.0-installer-linux-x86_64.sh
    18  RUN ./bazel-0.27.0-installer-linux-x86_64.sh
    19  
    20  RUN mkdir abseil-cpp && cd abseil-cpp \
    21      && git init && git remote add origin https://github.com/abseil/abseil-cpp.git \
    22      && git fetch --depth 1 origin 43ef2148c0936ebf7cb4be6b19927a9d9d145b8f && git checkout FETCH_HEAD