Dockerfile 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # Copyright 2021 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. FROM gcc:11
  15. RUN apt-get update && apt-get install -y curl git time wget zip && apt-get clean
  16. #====================
  17. # run_tests.py python dependencies
  18. # Basic python dependencies to be able to run tools/run_tests python scripts
  19. # These dependencies are not sufficient to build gRPC Python, gRPC Python
  20. # deps are defined elsewhere (e.g. python_deps.include)
  21. RUN apt-get update && apt-get install -y \
  22. python3 \
  23. python3-pip \
  24. python3-setuptools \
  25. python3-yaml \
  26. && apt-get clean
  27. # use pinned version of pip to avoid sudden breakages
  28. RUN python3 -m pip install --upgrade pip==19.3.1
  29. # TODO(jtattermusch): currently six is needed for tools/run_tests scripts
  30. # but since our python2 usage is deprecated, we should get rid of it.
  31. RUN python3 -m pip install six==1.16.0
  32. # Google Cloud Platform API libraries
  33. # These are needed for uploading test results to BigQuery (e.g. by tools/run_tests scripts)
  34. RUN python3 -m pip install --upgrade google-auth==1.23.0 google-api-python-client==1.12.8 oauth2client==4.1.0
  35. #=================
  36. # Install cmake
  37. # Note that this step should be only used for distributions that have new enough cmake to satisfy gRPC's cmake version requirement.
  38. RUN apt-get update && apt-get install -y cmake && apt-get clean
  39. #=================
  40. # Install ccache
  41. # Install ccache from source since ccache 3.x packaged with most linux distributions
  42. # does not support Redis backend for caching.
  43. RUN curl -sSL -o ccache.tar.gz https://github.com/ccache/ccache/releases/download/v4.5.1/ccache-4.5.1.tar.gz \
  44. && tar -zxf ccache.tar.gz \
  45. && cd ccache-4.5.1 \
  46. && mkdir build && cd build \
  47. && cmake -DCMAKE_BUILD_TYPE=Release -DZSTD_FROM_INTERNET=ON -DHIREDIS_FROM_INTERNET=ON .. \
  48. && make -j4 && make install \
  49. && cd ../.. \
  50. && rm -rf ccache-4.5.1 ccache.tar.gz
  51. RUN mkdir /var/local/jenkins
  52. # Define the default command.
  53. CMD ["bash"]