xref: /aosp_15_r20/external/grpc-grpc/tools/dockerfile/test/bazel_arm64/Dockerfile (revision cc02d7e222339f7a4f6ba5f422e6413f4bd931f2)
1# Copyright 2022 The gRPC Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15FROM arm64v8/debian:11
16
17#=================
18# Basic C core dependencies
19
20# C/C++ dependencies according to https://github.com/grpc/grpc/blob/master/BUILDING.md
21RUN apt-get update && apt-get install -y \
22  build-essential \
23  autoconf \
24  libtool \
25  pkg-config \
26  && apt-get clean
27
28# GCC
29RUN apt-get update && apt-get install -y \
30  gcc \
31  g++ \
32  && apt-get clean
33
34# libc6
35RUN apt-get update && apt-get install -y \
36  libc6 \
37  libc6-dbg \
38  libc6-dev \
39  && apt-get clean
40
41# Tools
42RUN apt-get update && apt-get install -y \
43  bzip2 \
44  curl \
45  dnsutils \
46  git \
47  lcov \
48  make \
49  strace \
50  time \
51  unzip \
52  wget \
53  zip \
54  && apt-get clean
55
56#=================
57# Setup git to access working directory across docker boundary.
58# This avoids the "fatal: detected dubious ownership in repository XYZ"
59# git error.
60
61RUN git config --global --add safe.directory '*'
62RUN git config --global protocol.file.allow always
63
64
65#====================
66# run_tests.py python dependencies
67
68# Basic python dependencies to be able to run tools/run_tests python scripts
69# These dependencies are not sufficient to build gRPC Python, gRPC Python
70# deps are defined elsewhere (e.g. python_deps.include)
71RUN apt-get update && apt-get install -y \
72  python3 \
73  python3-pip \
74  python3-setuptools \
75  python3-yaml \
76  && apt-get clean
77
78# use pinned version of pip to avoid sudden breakages
79RUN python3 -m pip install --upgrade pip==19.3.1
80
81# TODO(jtattermusch): currently six is needed for tools/run_tests scripts
82# but since our python2 usage is deprecated, we should get rid of it.
83RUN python3 -m pip install six==1.16.0
84
85# Google Cloud Platform API libraries
86# These are needed for uploading test results to BigQuery (e.g. by tools/run_tests scripts)
87RUN python3 -m pip install --upgrade google-auth==1.23.0 google-api-python-client==1.12.8 oauth2client==4.1.0
88
89
90#=================
91# C++ dependencies
92RUN apt-get update && apt-get -y install libc++-dev clang && apt-get clean
93
94
95# Install bazel
96#========================
97# Bazel installation
98
99# Must be in sync with tools/bazel
100ENV BAZEL_VERSION 7.1.0
101
102# The correct bazel version is already preinstalled, no need to use //tools/bazel wrapper.
103ENV DISABLE_BAZEL_WRAPPER 1
104
105# Download the correct bazel version and make sure it's on path.
106RUN BAZEL_ARCH_SUFFIX="$(uname -m | sed s/aarch64/arm64/)" \
107  && curl -sSL --fail -o /usr/local/bin/bazel "https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VERSION-linux-$BAZEL_ARCH_SUFFIX" \
108  && chmod a+x /usr/local/bin/bazel
109
110# Normally we would run "bazel --version" here to make sure bazel
111# was correctly installed, but we can't do that because
112# of # https://github.com/bazelbuild/bazel/issues/11379.
113# We want to keep the arm64 version of the image buildable
114# on x64 with use of qemu-user-static & binfmt emulation,
115# but the self-extraction is broken for bazel currently.
116# The binary will work correctly when run on real arm64
117# hardware, when qemu-user-static isn't getting into the way.
118
119
120# Define the default command.
121CMD ["bash"]
122