mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
11 lines
302 B
Bash
11 lines
302 B
Bash
#!/bin/bash
|
|
|
|
# build mongodb image
|
|
docker build -t mongodb:bdb-itest -f Dockerfile.mongo .
|
|
|
|
# build mongodb image
|
|
docker build -t tendermint:bdb-itest -f Dockerfile.tendermint .
|
|
|
|
# build bigchaindb image (execute in parent directory)
|
|
cd .. && docker build -t bigchaindb:bdb-itest -f Dockerfile.itest .
|