diff --git a/webapp/build-and-push-images.sh b/webapp/build-and-push-images.sh new file mode 100755 index 0000000..d81f4e9 --- /dev/null +++ b/webapp/build-and-push-images.sh @@ -0,0 +1,13 @@ +#! /bin/sh + +# Build the KubeDiagrams Frontend image +docker buildx build -t philippemerle/kubediagrams-frontend:latest frontend + +# Push the KubeDiagrams Frontend image +docker image push philippemerle/kubediagrams-frontend:latest + +# Build the KubeDiagrams Backend image +docker buildx build -t philippemerle/kubediagrams-backend:latest backend + +# Push the KubeDiagrams Backend image +docker image push philippemerle/kubediagrams-backend:latest