aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/makefile/Dockerfile
blob: 10a9f80c89a32b24282199fc7edbb4fb9c985b53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM ubuntu:16.04

MAINTAINER Gunhan Gulsoy <gunan@google.com>

# Install make build dependencies for TensorFlow.
RUN apt-get update
RUN apt-get install -y \
    autoconf \
    automake \
    curl \
    g++ \
    git \
    libtool \
    make \
    python \
    unzip \
    zlib1g-dev