-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
53 lines (40 loc) · 938 Bytes
/
Dockerfile
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
FROM ubuntu:18.04
RUN apt-get update && \
apt-get install -y python3 python3-dev python3-pip && \
apt-get clean
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
build-essential \
cmake \
gcc \
libboost-all-dev \
libopenblas-base \
make \
pkg-config \
python3 \
python3-dev \
wget \
python-pip \
python3-pip \
software-properties-common \
git
RUN pkg-config --cflags python
RUN pip3 install numpy
RUN pip3 install pybind11
RUN git clone https://github.com/verivital/run_nnv_comparison
# cmake cmake-data libarchive13 libcurl4 libjsoncpp1 liblzo2-2 librhash0 libuv1
RUN ls
WORKDIR run_nnv_comparison
RUN chmod +x setup_tools.sh
RUN ./setup_tools.sh
#RUN chmod +x run_tools.sh
#RUN ./run_tools.sh
RUN apt-get install nano
RUN ls
RUN ls
RUN ls
RUN ls
RUN ls
RUN ls
RUN ls
RUN git pull