Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix debian jessie ci_build #7790

Merged
merged 2 commits into from Feb 23, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 9 additions & 1 deletion tensorflow/tools/ci_build/Dockerfile.debian.jessie.cpu
Expand Up @@ -5,7 +5,15 @@ MAINTAINER Jan Prach <jendap@google.com>
# Copy and run the install scripts.
COPY install/*.sh /install/
RUN /install/install_bootstrap_deb_packages.sh
RUN echo "deb http://http.debian.net/debian jessie-backports main" | tee -a /etc/apt/sources.list
RUN echo "deb http://http.debian.net/debian jessie-backports main" | \
tee -a /etc/apt/sources.list
# Workaround bug in Jessie backport repository deb packages
# http://serverfault.com/questions/830636/cannot-install-openjdk-8-jre-headless-on-debian-jessie
RUN apt-get update && \
apt-get install -y --no-install-recommends -t jessie-backports \
openjdk-8-jre-headless ca-certificates-java && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN /install/install_deb_packages.sh
RUN /install/install_pip_packages.sh
RUN /install/install_bazel.sh
Expand Down