1# Copyright 2018 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 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 92 93# cmake >=3.6 needed to build grpc_csharp_ext 94RUN apt-get update && apt-get install -y cmake && apt-get clean 95 96# Install mono 97RUN apt-get update && apt-get install -y apt-transport-https dirmngr && apt-get clean 98RUN apt-key adv --no-tty --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF 99RUN echo "deb https://download.mono-project.com/repo/debian stable-buster main" | tee /etc/apt/sources.list.d/mono-official-stable.list 100RUN apt-get update && apt-get install -y \ 101 mono-devel \ 102 ca-certificates-mono \ 103 nuget \ 104 && apt-get clean 105 106# Install .NET Core 3.1 (to be able to run the netcoreapp3.1 targets) 107RUN DOTNET_DOWNLOAD_VERSION=3.1.415 \ 108 && DOTNET_DOWNLOAD_ARCH="$(uname -m | sed s/x86_64/x64/ | sed s/aarch64/arm64/)" \ 109 && curl -sSL -o dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Sdk/$DOTNET_DOWNLOAD_VERSION/dotnet-sdk-$DOTNET_DOWNLOAD_VERSION-linux-$DOTNET_DOWNLOAD_ARCH.tar.gz \ 110 && mkdir -p /usr/share/dotnet \ 111 && tar -zxf dotnet.tar.gz -C /usr/share/dotnet \ 112 && rm dotnet.tar.gz 113 114# Install .NET 6 115RUN DOTNET_DOWNLOAD_VERSION=6.0.100 \ 116 && DOTNET_DOWNLOAD_ARCH="$(uname -m | sed s/x86_64/x64/ | sed s/aarch64/arm64/)" \ 117 && curl -sSL -o dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Sdk/$DOTNET_DOWNLOAD_VERSION/dotnet-sdk-$DOTNET_DOWNLOAD_VERSION-linux-$DOTNET_DOWNLOAD_ARCH.tar.gz \ 118 && mkdir -p /usr/share/dotnet \ 119 && tar -zxf dotnet.tar.gz -C /usr/share/dotnet \ 120 && rm dotnet.tar.gz 121 122# Make sure "dotnet" is on PATH 123RUN ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet 124 125# Trigger the population of the local package cache 126ENV NUGET_XMLDOC_MODE skip 127RUN mkdir warmup \ 128 && cd warmup \ 129 && dotnet new \ 130 && cd .. \ 131 && rm -rf warmup 132 133#================= 134# Install ccache 135 136# Install ccache from source since ccache 3.x packaged with most linux distributions 137# does not support Redis backend for caching. 138RUN curl -sSL -o ccache.tar.gz https://github.com/ccache/ccache/releases/download/v4.7.5/ccache-4.7.5.tar.gz \ 139 && tar -zxf ccache.tar.gz \ 140 && cd ccache-4.7.5 \ 141 && mkdir build && cd build \ 142 && cmake -DCMAKE_BUILD_TYPE=Release -DZSTD_FROM_INTERNET=ON -DHIREDIS_FROM_INTERNET=ON .. \ 143 && make -j4 && make install \ 144 && cd ../.. \ 145 && rm -rf ccache-4.7.5 ccache.tar.gz 146 147 148RUN mkdir /var/local/jenkins 149 150 151# Define the default command. 152CMD ["bash"] 153