mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.1 KiB
58 lines
2.1 KiB
3 years ago
|
# Copyright 2021 gRPC authors.
|
||
9 years ago
|
#
|
||
8 years ago
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
# you may not use this file except in compliance with the License.
|
||
|
# You may obtain a copy of the License at
|
||
9 years ago
|
#
|
||
8 years ago
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||
9 years ago
|
#
|
||
8 years ago
|
# Unless required by applicable law or agreed to in writing, software
|
||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
# See the License for the specific language governing permissions and
|
||
|
# limitations under the License.
|
||
9 years ago
|
|
||
3 years ago
|
FROM gcc:5
|
||
9 years ago
|
|
||
3 years ago
|
RUN apt-get update && apt-get install -y curl git time wget zip && apt-get clean
|
||
9 years ago
|
#====================
|
||
3 years ago
|
# run_tests.py python dependencies
|
||
9 years ago
|
|
||
3 years ago
|
# Basic python dependencies to be able to run tools/run_tests python scripts
|
||
|
# These dependencies are not sufficient to build gRPC Python, gRPC Python
|
||
|
# deps are defined elsewhere (e.g. python_deps.include)
|
||
9 years ago
|
RUN apt-get update && apt-get install -y \
|
||
3 years ago
|
python3 \
|
||
|
python3-pip \
|
||
|
python3-setuptools \
|
||
|
python3-yaml \
|
||
|
&& apt-get clean
|
||
|
|
||
|
# use pinned version of pip to avoid sudden breakages
|
||
|
RUN python3 -m pip install --upgrade pip==19.3.1
|
||
|
|
||
|
# TODO(jtattermusch): currently six is needed for tools/run_tests scripts
|
||
|
# but since our python2 usage is deprecated, we should get rid of it.
|
||
|
RUN python3 -m pip install six==1.16.0
|
||
9 years ago
|
|
||
3 years ago
|
# Google Cloud Platform API libraries
|
||
|
# These are needed for uploading test results to BigQuery (e.g. by tools/run_tests scripts)
|
||
|
RUN python3 -m pip install --upgrade google-auth==1.23.0 google-api-python-client==1.12.8 oauth2client==4.1.0
|
||
9 years ago
|
|
||
5 years ago
|
|
||
7 years ago
|
#=================
|
||
|
# Use cmake 3.6 from jessie-backports
|
||
|
# should only be used for images based on debian jessie.
|
||
|
|
||
6 years ago
|
RUN echo "deb http://archive.debian.org/debian jessie-backports main" | tee /etc/apt/sources.list.d/jessie-backports.list
|
||
6 years ago
|
RUN echo 'Acquire::Check-Valid-Until "false";' > /etc/apt/apt.conf
|
||
6 years ago
|
RUN sed -i '/deb http:\/\/deb.debian.org\/debian jessie-updates main/d' /etc/apt/sources.list
|
||
6 years ago
|
RUN apt-get update && apt-get install -t jessie-backports -y cmake && apt-get clean
|
||
7 years ago
|
|
||
9 years ago
|
|
||
|
RUN mkdir /var/local/jenkins
|
||
|
|
||
8 years ago
|
|
||
9 years ago
|
# Define the default command.
|
||
7 years ago
|
CMD ["bash"]
|