-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
26 lines (18 loc) · 1.3 KB
/
Makefile
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
build-config:
docker build --no-cache -t ${registry_url}/namada-config:${sha} -f config/Dockerfile --build-arg GIT_SHA=${sha} config
build-genesis:
docker build --no-cache -t ${registry_url}/namada-genesis:${sha} -f genesis/Dockerfile --build-arg GIT_SHA=${sha} --build-arg GENESIS_TEMPLATE_VERSION=${genesis_template_version} genesis
build-namada:
docker build --no-cache -t ${registry_url}/namada:${sha} -f namada/Dockerfile --build-arg GIT_SHA=${sha} namada
build-namada-inst:
docker build --no-cache -t ${registry_url}/namada:${sha}-inst -f namada/Dockerfile.inst --build-arg GIT_SHA=${sha} namada
build-check:
docker build --no-cache -t ${registry_url}/check:latest -f check/Dockerfile check
build-workload:
docker build --no-cache -t ${registry_url}/workload:${sha} -f workload/Dockerfile workload --build-arg GIT_SHA=${sha}
build-masp-indexer-webserver:
docker build --no-cache -t ${registry_url}/masp-indexer-webserver:${masp_sha} --build-arg GIT_SHA=${masp_sha} masp-indexer/webserver
build-masp-indexer-chain:
docker build --no-cache -t ${registry_url}/masp-indexer-chain:${masp_sha} --build-arg GIT_SHA=${masp_sha} masp-indexer/chain
build-masp-indexer-block-filter:
docker build --no-cache -t ${registry_url}/masp-indexer-block-filter:${masp_sha} --build-arg GIT_SHA=${masp_sha} masp-indexer/block-filter