2020-05-21 13:02:28 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd $(git rev-parse --show-toplevel)
|
|
|
|
|
2020-10-20 11:34:22 +01:00
|
|
|
TAG=${1:-latest}
|
2020-05-21 13:02:28 +01:00
|
|
|
|
2020-10-20 11:34:22 +01:00
|
|
|
echo "Building tag '${TAG}'"
|
2020-06-05 19:00:30 +01:00
|
|
|
|
2020-10-20 16:11:24 +01: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 .
|