FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node-OpenDroneMap/Dockerfile at master · amulford/node-OpenDroneMap · GitHub
amulford
/
node-OpenDroneMap
Public
forked from
OpenDroneMap/NodeODM
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
node-OpenDroneMap
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
45 lines (33 loc) · 1.23 KB
Breadcrumbs
node-OpenDroneMap
/
Dockerfile
Copy path
File metadata and controls
45 lines (33 loc) · 1.23 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
FROM
opendronemap/opendronemap:latest
MAINTAINER
Piero Toffanin <pt@masseranolabs.com>
EXPOSE
3000
USER
root
RUN
curl --silent --location https://deb.nodesource.com/setup_6.x | bash -
RUN
apt-get install -y nodejs python-gdal libboost-dev libboost-program-options-dev git cmake
RUN
npm install -g nodemon
#
Build LASzip and PotreeConverter
WORKDIR
"/staging"
RUN
git clone https://github.com/pierotofy/LAStools /staging/LAStools && \
cd LAStools/LASzip && \
mkdir build && \
cd build && \
cmake -DCMAKE_BUILD_TYPE=Release .. && \
make && \
make install && \
ldconfig
RUN
git clone https://github.com/pierotofy/PotreeConverter /staging/PotreeConverter
RUN
cd /staging/PotreeConverter && \
mkdir build && \
cd build && \
cmake -DCMAKE_BUILD_TYPE=Release -DLASZIP_INCLUDE_DIRS=/staging/LAStools/LASzip/dll -DLASZIP_LIBRARY=/staging/LAStools/LASzip/build/src/liblaszip.so .. && \
make && \
make install
RUN
mkdir /var/www
WORKDIR
"/var/www"
#
RUN git clone https://github.com/OpenDroneMap/node-OpenDroneMap .
COPY
. /var/www
RUN
npm install
RUN
mkdir tmp
#
Fix old version of gdal2tiles.py
#
RUN (cd / && patch -p0) <patches/gdal2tiles.patch
ENTRYPOINT
[
"/usr/bin/nodejs"
,
"/var/www/index.js"
]
Back
|
FazBrowse Home
|
New Git URL