-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile
121 lines (103 loc) · 2.96 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
##### BEGIN INSTANT NGP INSTALL #####
FROM nvidia/cuda:10.2-devel-ubuntu18.04
ENV COLMAP_VERSION=3.7
ENV CMAKE_VERSION=3.21.0
ENV PYTHON_VERSION=3.9.7
ENV OPENCV_VERSION=4.5.5.62
ENV CERES_SOLVER_VERSION=2.0.0
RUN echo "Installing apt packages..." \
&& export DEBIAN_FRONTEND=noninteractive \
&& apt -y update --no-install-recommends \
&& apt -y install --no-install-recommends \
git \
wget \
ffmpeg \
tk-dev \
libxi-dev \
libc6-dev \
libbz2-dev \
libffi-dev \
libomp-dev \
libssl-dev \
zlib1g-dev \
libcgal-dev \
libgdbm-dev \
libglew-dev \
python3-dev \
python3-pip \
qtbase5-dev \
checkinstall \
libglfw3-dev \
libeigen3-dev \
libgflags-dev \
libxrandr-dev \
libopenexr-dev \
libsqlite3-dev \
libxcursor-dev \
build-essential \
libcgal-qt5-dev \
libxinerama-dev \
libboost-all-dev \
libfreeimage-dev \
libncursesw5-dev \
libatlas-base-dev \
libqt5opengl5-dev \
libgoogle-glog-dev \
libsuitesparse-dev \
python3-setuptools \
libreadline-gplv2-dev \
&& apt autoremove -y \
&& apt clean -y \
&& export DEBIAN_FRONTEND=dialog
RUN echo "Installing Python ver. ${PYTHON_VERSION}..." \
&& cd /opt \
&& wget https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz \
&& tar xzf Python-${PYTHON_VERSION}.tgz \
&& cd ./Python-${PYTHON_VERSION} \
&& ./configure --enable-optimizations \
&& make \
&& checkinstall
COPY requirements/ngp_requirements.txt ./
RUN echo "Installing pip packages..." \
&& python3 -m pip install -U pip \
&& pip3 --no-cache-dir install -r ./ngp_requirements.txt \
&& pip3 --no-cache-dir install cmake==${CMAKE_VERSION} opencv-python==${OPENCV_VERSION} \
&& rm ./ngp_requirements.txt
RUN echo "Installing Ceres Solver ver. ${CERES_SOLVER_VERSION}..." \
&& cd /opt \
&& git clone https://github.com/ceres-solver/ceres-solver \
&& cd ./ceres-solver \
&& git checkout ${CERES_SOLVER_VERSION} \
&& mkdir ./build \
&& cd ./build \
&& cmake ../ -DBUILD_TESTING=OFF -DBUILD_EXAMPLES=OFF \
&& make -j \
&& make install
RUN echo "Installing COLMAP ver. ${COLMAP_VERSION}..." \
&& cd /opt \
&& git clone https://github.com/colmap/colmap \
&& cd ./colmap \
&& git checkout ${COLMAP_VERSION} \
&& mkdir ./build \
&& cd ./build \
&& cmake ../ \
&& make -j \
&& make install \
&& colmap -h
##### END INSTANT NGP INSTALL #####
##### BEGIN BLURDETECTION INSTALL #####
RUN echo "Installing BlurDetection2..." \
&& cd /opt \
&& git clone https://github.com/WillBrennan/BlurDetection2.git
##### END BLURDETECTION INSTALL #####
##### BEGIN MARS METAVERSE INSTALL #####
##### A NEW URL WILL BE NEEDED EVERY 30 DAYS #####
RUN echo "Installing Mars Metaverse..." \
&& cd /opt \
&& git clone https://github.com/lrnzgiusti/MaRF.git \
&& cp /opt/MaRF/scripts/uncertainty/uncertainty.py /opt/instant-ngp/scripts
COPY requirements/pip_requirements.txt ./
RUN echo "Installing pip packages..." \
&& pip3 --no-cache-dir install -r ./pip_requirements.txt \
&& rm ./pip_requirements.txt
##### END MARS METAVERSE INSTALL #####