xref: /aosp_15_r20/external/grpc-grpc/tools/dockerfile/interoptest/grpc_interop_python/Dockerfile (revision cc02d7e222339f7a4f6ba5f422e6413f4bd931f2)
1# Copyright 2015 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 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
66RUN mkdir /var/local/jenkins
67
68
69RUN apt-get update && apt-get install -y python3 python3-all-dev python3-pip
70RUN ln -s $(which python3) /usr/bin/python
71
72# Google Cloud Platform API libraries
73# These are needed for uploading test results to BigQuery (e.g. by tools/run_tests scripts)
74RUN python3 -m pip install --upgrade google-auth==1.23.0 google-api-python-client==1.12.8 oauth2client==4.1.0
75
76
77#=================
78# Install cmake
79# Note that this step should be only used for distributions that have new enough cmake to satisfy gRPC's cmake version requirement.
80
81RUN apt-get update && apt-get install -y cmake && apt-get clean
82
83#=================
84# Install ccache
85
86# Install ccache from source since ccache 3.x packaged with most linux distributions
87# does not support Redis backend for caching.
88RUN curl -sSL -o ccache.tar.gz https://github.com/ccache/ccache/releases/download/v4.7.5/ccache-4.7.5.tar.gz \
89    && tar -zxf ccache.tar.gz \
90    && cd ccache-4.7.5 \
91    && mkdir build && cd build \
92    && cmake -DCMAKE_BUILD_TYPE=Release -DZSTD_FROM_INTERNET=ON -DHIREDIS_FROM_INTERNET=ON .. \
93    && make -j4 && make install \
94    && cd ../.. \
95    && rm -rf ccache-4.7.5 ccache.tar.gz
96
97