2022-09-27 09:42:08 +01:00
|
|
|
#!/usr/bin/env bash
|
2020-05-21 13:02:28 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
2022-11-02 14:04:08 +00:00
|
|
|
docker build . --target monolith -t matrixdotorg/dendrite-monolith:${TAG}
|
|
|
|
docker build . --target polylith -t matrixdotorg/dendrite-monolith:${TAG}
|
|
|
|
docker build . --target demo-pinecone -t matrixdotorg/dendrite-demo-pinecone:${TAG}
|
|
|
|
docker build . --target demo-yggdrasil -t matrixdotorg/dendrite-demo-yggdrasil:${TAG}
|