1 # Copyright 2015 gRPC authors.
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
7 # http://www.apache.org/licenses/LICENSE-2.0
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.
15 FROM 32bit/debian:jessie
16 RUN sed -i '/deb http:\/\/http.debian.net\/debian jessie-updates main/d' /etc/apt/sources.list
18 # Install Git and basic packages.
19 RUN apt-get update && apt-get install -y \
51 RUN apt-get update && apt-get install -y time && apt-get clean
53 # Google Cloud platform API libraries
54 RUN apt-get update && apt-get install -y python-pip && apt-get clean
55 RUN pip install --upgrade google-api-python-client oauth2client
60 # Install dependencies
62 RUN apt-get update && apt-get install -y \
67 # Install Python packages from PyPI
68 RUN pip install --upgrade pip==10.0.1
69 RUN pip install virtualenv
70 RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.5.2.post1 six==1.10.0 twisted==17.5.0
74 RUN apt-get update && apt-get -y install libgflags-dev libgtest-dev libc++-dev clang && apt-get clean
77 RUN mkdir /var/local/jenkins
80 # Use cmake 3.6 from jessie-backports
81 # should only be used for images based on debian jessie.
83 RUN echo "deb http://archive.debian.org/debian jessie-backports main" | tee /etc/apt/sources.list.d/jessie-backports.list
84 RUN echo 'Acquire::Check-Valid-Until "false";' > /etc/apt/apt.conf
85 RUN sed -i '/deb http:\/\/deb.debian.org\/debian jessie-updates main/d' /etc/apt/sources.list
86 RUN apt-get update && apt-get install -t jessie-backports -y cmake && apt-get clean
89 # Install gcc-4.8 and other relevant items
90 RUN apt-get update && apt-get -y install gcc-4.8 gcc-4.8-multilib g++-4.8 g++-4.8-multilib && apt-get clean
92 # Define the default command.