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 alpine:3.17 16 17# Install Git and basic packages. 18RUN apk update && apk add \ 19 autoconf \ 20 automake \ 21 bash \ 22 bzip2 \ 23 build-base \ 24 cmake \ 25 curl \ 26 gcc \ 27 git \ 28 libtool \ 29 linux-headers \ 30 make \ 31 perl \ 32 strace \ 33 python3 \ 34 py3-pip \ 35 unzip \ 36 wget \ 37 zip 38 39#================= 40# Setup git to access working directory across docker boundary. 41# This avoids the "fatal: detected dubious ownership in repository XYZ" 42# git error. 43 44RUN git config --global --add safe.directory '*' 45RUN git config --global protocol.file.allow always 46 47 48# use pinned version of pip to avoid sudden breakages 49RUN python3 -m pip install --upgrade pip==19.3.1 50 51# TODO(jtattermusch): currently six is needed for tools/run_tests scripts 52# but since our python2 usage is deprecated, we should get rid of it. 53RUN python3 -m pip install six==1.16.0 54 55# Google Cloud Platform API libraries 56# These are needed for uploading test results to BigQuery (e.g. by tools/run_tests scripts) 57RUN python3 -m pip install --upgrade google-auth==1.24.0 google-api-python-client==1.12.8 oauth2client==4.1.0 58 59RUN python3 -m pip install --upgrade --ignore-installed PyYAML==6.0.1 --user 60 61# Some cxx tests depend on the twisted package 62RUN python3 -m pip install twisted 63 64#================= 65# Install ccache 66 67# Install ccache from source since ccache 3.x packaged with most linux distributions 68# does not support Redis backend for caching. 69RUN curl -sSL -o ccache.tar.gz https://github.com/ccache/ccache/releases/download/v4.7.5/ccache-4.7.5.tar.gz \ 70 && tar -zxf ccache.tar.gz \ 71 && cd ccache-4.7.5 \ 72 && mkdir build && cd build \ 73 && cmake -DCMAKE_BUILD_TYPE=Release -DZSTD_FROM_INTERNET=ON -DHIREDIS_FROM_INTERNET=ON .. \ 74 && make -j4 && make install \ 75 && cd ../.. \ 76 && rm -rf ccache-4.7.5 ccache.tar.gz 77 78 79RUN mkdir /var/local/jenkins 80 81 82 83# Define the default command. 84CMD ["bash"] 85