Dockerfile.ngraph_cpp 757 Bytes
Newer Older
1 2 3 4
# Environment to build and unit-test private-ngraph-cpp

FROM ubuntu:16.04

5 6 7 8
RUN apt-get update && apt-get install -y \
        build-essential cmake \
        clang-3.9 clang-format-3.9 \
        git \
9
        wget patch diffutils zlib1g-dev libtinfo-dev \
10
        doxygen python-pip
11

12
RUN apt-get clean autoclean && \
13
    apt-get autoremove -y
14 15 16 17 18 19 20 21
RUN pip install --upgrade pip

# need to use sphinx version 1.6 to build docs
# installing with apt-get install python-sphinx installs sphinx version 1.3.6 only
# added install for python-pip above and
# installed sphinx with pip to get the updated version 1.6.5
# allows for make html build under the doc/source directory as an interim build process
RUN pip install sphinx
L.S. Cook's avatar
L.S. Cook committed
22
RUN pip install breathe
23

24
WORKDIR /home