Dockerfile.ngraph_cpp_cpu 642 Bytes
Newer Older
1 2 3 4 5 6
# Environment to build and unit-test private-ngraph-cpp

FROM ubuntu:16.04

RUN apt-get update

7
RUN apt-get install -y build-essential cmake && \
8 9 10
    apt-get clean autoclean && \
    apt-get autoremove -y

11
RUN apt-get install -y clang-3.9 clang-format-3.9 && \
12 13 14 15 16 17 18
    apt-get clean autoclean && \
    apt-get autoremove -y

RUN apt-get install -y git && \
    apt-get clean autoclean && \
    apt-get autoremove -y

19 20 21 22
RUN apt-get install -y wget patch diffutils && \
    apt-get clean autoclean && \
    apt-get autoremove -y

23 24 25
# Add chown_files script to avoid 
ADD contrib/docker/chown_files.sh /tmp/chown_files.sh

26
WORKDIR /root/ngraph-cpp-test