Dockerfile.cpu 459 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
# Docker image for running examples in Tensorflow models.
# base_image depends on whether we are running on GPUs or non-GPUs
FROM ubuntu:latest

RUN apt-get update && apt-get install -y --no-install-recommends \
    ca-certificates \
    build-essential \
    git \
    python \
    python-pip \
    python-setuptools
Karmel Allison's avatar
Karmel Allison committed
12

13
14
RUN pip install tf-nightly

15
# Checkout tensorflow/models at HEAD
16
17
RUN git clone https://github.com/tensorflow/models.git /tensorflow_models