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

LABEL 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 \
    wget \
    zlib1g-dev