aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/ci_build/Dockerfile.cmake
blob: 22eaf11b91869ba1e0f6f98c6c51ee269b18e8b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM ubuntu:16.04

MAINTAINER Shanqing Cai <cais@google.com>

# Copy and run the install scripts.
COPY install/*.sh /install/
RUN /install/install_bootstrap_deb_packages.sh
RUN /install/install_deb_packages.sh

RUN apt-get update
RUN apt-get install -y --no-install-recommends python-pip
RUN pip install --upgrade numpy

# Install golang
RUN add-apt-repository -y ppa:ubuntu-lxc/lxd-stable
RUN apt-get install -y golang