-
Notifications
You must be signed in to change notification settings - Fork 148
/
install.py
72 lines (59 loc) · 1.83 KB
/
install.py
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
import os
import argparse
import subprocess
def docker_tag_base():
return 'vdbbench'
def dockerfile_path_base():
return os.path.join('vectordb_bench/', '../Dockerfile')
def docker_tag(track, algo):
return docker_tag_base() + '-' + track + '-' + algo
def build(tag, args, dockerfile):
print('Building %s...' % tag)
if args is not None and len(args) != 0:
q = " ".join(["--build-arg " + x.replace(" ", "\\ ") for x in args])
else:
q = ""
try:
command = 'docker build %s --rm -t %s -f' \
% (q, tag)
command += ' %s .' % dockerfile
print(command)
subprocess.check_call(command, shell=True)
return {tag: 'success'}
except subprocess.CalledProcessError:
return {tag: 'fail'}
def build_multiprocess(args):
return build(*args)
if __name__ == "__main__":
parser = argparse.ArgumentParser(
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument(
"--proc",
default=1,
type=int,
help="the number of process to build docker images")
parser.add_argument(
'--track',
choices=['none'],
default='none'
)
parser.add_argument(
'--algorithm',
metavar='NAME',
help='build only the named algorithm image',
default=None)
parser.add_argument(
'--dockerfile',
metavar='PATH',
help='build only the image from a Dockerfile path',
default=None)
parser.add_argument(
'--build-arg',
help='pass given args to all docker builds',
nargs="+")
args = parser.parse_args()
print('Building base image...')
subprocess.check_call(
'docker build \
--rm -t %s -f %s .' % (docker_tag_base(), dockerfile_path_base()), shell=True)
print('Building end.')