-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
37 lines (31 loc) · 983 Bytes
/
Dockerfile
File metadata and controls
37 lines (31 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FROM ubuntu:16.04
MAINTAINER Disa Mhembere
RUN apt-get update
RUN apt-get -y upgrade
RUN apt-get -o Dpkg::Options::="--force-confold" --force-yes -y upgrade
RUN apt-get -y install \
build-essential \
git \
libmpich-dev \
libnuma-dbg libnuma-dev libnuma1 \
python-all-dev python-pip \
vim \
libaio-dev \
libatlas-base-dev \
libgoogle-perftools-dev \
libaio-dev libatlas-base-dev zlib1g-dev \
libnuma-dev libhwloc-dev
RUN apt-get remove -y python-setuptools python3-setuptools
# To ingest example
RUN pip install --upgrade pip
RUN pip install --upgrade setuptools pybind11 numpy
RUN apt-get -y install python3
RUN apt-get -y install python3-pip
RUN pip3 install --upgrade pip
RUN pip3 install --upgrade setuptools pybind11 numpy
WORKDIR /home/ubuntu/
RUN git clone --recursive https://github.com/flashxio/graphyti.git
WORKDIR graphyti
RUN make install
# Enter bash shell
ENTRYPOINT ["bash"]