-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild_all.sh
More file actions
executable file
·52 lines (40 loc) · 876 Bytes
/
build_all.sh
File metadata and controls
executable file
·52 lines (40 loc) · 876 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash
set -e
git submodule init
git submodule update --recursive
# Build OpenSfM
cd OpenSfM/
git submodule init
git submodule update --recursive
docker build --compress -t opensfm -f Dockerfile.python3 .
cd ..
# Build Hugin
cd hugin/
docker build --compress -t hugin .
cd -
# Build opv-tasks
cd OPV_Tasks/
docker build --compress -t opv-tasks .
cd -
# Build opv-celery and opv-flower
cd OPV_Celery/
docker build --compress -t opv-celery .
docker build --compress -t opv-flower -f Dockerfile-flower .
cd -
# Build opv-dbrest
cd OPV_DBRest/
docker build --compress -t opv-dbrest .
cd -
# Build opv-dm
cd DirectoryManager/
docker build --compress -t opv-dm .
cd -
cd opv-status/
docker build --compress -t opv-status .
cd -
cd opv-status-api/
docker build --compress -t opv-status-api .
cd -
cd opv-graphe/
docker build --compress -t opv-graph .
cd -