github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/images/benchmarks/runsc/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              python-minimal \
    14              python3 \
    15              python3-pip \
    16          && rm -rf /var/lib/apt/lists/*
    17  
    18  RUN wget https://github.com/bazelbuild/bazel/releases/download/3.4.1/bazel-3.4.1-installer-linux-x86_64.sh
    19  RUN chmod +x bazel-3.4.1-installer-linux-x86_64.sh
    20  RUN ./bazel-3.4.1-installer-linux-x86_64.sh
    21  
    22  # Download release-20200601.0
    23  RUN mkdir gvisor && cd gvisor \
    24      && git init && git remote add origin https://github.com/google/gvisor.git \
    25      && git fetch --depth 1 origin a9b47390c821942d60784e308f681f213645049c && git checkout FETCH_HEAD