aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile/grpc_artifact_linux_x64/Dockerfile
diff options
context:
space:
mode:
authorGravatar Masood Malekghassemi <atash@google.com>2016-05-03 12:33:02 -0700
committerGravatar Masood Malekghassemi <atash@google.com>2016-05-04 15:30:30 -0700
commit616b2793fd20eb28c2be53831f967332659987d0 (patch)
treebfa253883c96f44b8f04bae9824c2abf7c61de18 /tools/dockerfile/grpc_artifact_linux_x64/Dockerfile
parent955887928f1ac6d9b39599d14b6b7a522db026d9 (diff)
Fix docker build
Diffstat (limited to 'tools/dockerfile/grpc_artifact_linux_x64/Dockerfile')
-rw-r--r--tools/dockerfile/grpc_artifact_linux_x64/Dockerfile12
1 files changed, 3 insertions, 9 deletions
diff --git a/tools/dockerfile/grpc_artifact_linux_x64/Dockerfile b/tools/dockerfile/grpc_artifact_linux_x64/Dockerfile
index 5be2d37061..4ae4ebdb06 100644
--- a/tools/dockerfile/grpc_artifact_linux_x64/Dockerfile
+++ b/tools/dockerfile/grpc_artifact_linux_x64/Dockerfile
@@ -31,8 +31,10 @@
FROM debian:jessie
+RUN apt-get update && apt-get install debian-keyring && apt-key update
+
# Install Git and basic packages.
-RUN apt-get update && apt-get install -y \
+RUN apt-get update && apt-key update && apt-get install -y \
autoconf \
autotools-dev \
build-essential \
@@ -67,14 +69,6 @@ RUN /bin/bash -l -c "nvm install 4 && npm install -g node-pre-gyp"
##################
# Python dependencies
-# Install bazel
-RUN echo "deb http://httpredir.debian.org/debian jessie-backports main" > /etc/apt/sources.list.d/backports.list
-RUN apt-get update
-RUN apt-get -t jessie-backports install -y openjdk-8-jdk
-RUN git clone https://github.com/bazelbuild/bazel.git /bazel
-RUN cd /bazel && ./compile.sh
-RUN ln -s /bazel/output/bazel /bin/
-
RUN apt-get update && apt-get install -y \
python-all-dev \
python3-all-dev \