-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase_gcc_python_ai_google
More file actions
39 lines (39 loc) · 1.06 KB
/
Copy pathbase_gcc_python_ai_google
File metadata and controls
39 lines (39 loc) · 1.06 KB
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
{
"builders": [
{
"type": "docker",
"image": "syalovitser/base_gcc_python",
"export_path": "base_gcc_python_ai_google.tar"
}
],
"provisioners": [
{
"type": "shell",
"inline": [
"pip install ipython",
"pip install 'ipython[notebook]'",
"apt-get install -y libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libboost-all-dev libhdf5-serial-dev",
"apt-get install -y libgflags-dev libgoogle-glog-dev liblmdb-dev protobuf-compiler",
"mkdir /opt/caffe",
"cd /opt/caffe && git clone https://github.com/BVLC/caffe.git && cp Makefile.config.example Makefile.config && make all && make test && make runtest && make install"
]
}
],
"post-processors": [
[
{
"type": "docker-import",
"repository": "syalovitser/base_gcc_python_ai_google",
"tag": "latest",
"keep_input_artifact": true
},
{
"type": "docker-push",
"login": true,
"login_email": "syalovitser@yahoo.com",
"login_username":"syalovitser",
"login_password":"ruslana"
}
]
]
}