2020-05-21 07:02:28 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd $(git rev-parse --show-toplevel)
|
|
|
|
|
2020-10-20 05:34:22 -05:00
|
|
|
TAG=${1:-latest}
|
2020-05-21 07:02:28 -05:00
|
|
|
|
2020-10-20 05:34:22 -05:00
|
|
|
echo "Building tag '${TAG}'"
|
2020-06-05 13:00:30 -05:00
|
|
|
|
2020-10-20 10:11:24 -05:00
|
|
|
docker build -t matrixdotorg/dendrite-monolith:${TAG} -f build/docker/Dockerfile.monolith .
|
|
|
|
docker build -t matrixdotorg/dendrite-polylith:${TAG} -f build/docker/Dockerfile.polylith .
|