c889a57b6b
Scorecard supply-chain security / Scorecard analysis (push) Waiting to run
build | Build and Push Cognee MCP Docker Image to dockerhub / docker-build-and-push (push) Waiting to run
build | Build and Push Docker Image to dockerhub / docker-build-and-push (push) Waiting to run
Weighted Edges Tests / Code Quality for Weighted Edges (push) Waiting to run
Weighted Edges Tests / Test Weighted Edges Core Functionality (3.11) (push) Waiting to run
Weighted Edges Tests / Test Weighted Edges Core Functionality (3.12) (push) Waiting to run
Weighted Edges Tests / Test Weighted Edges with Different Graph Databases (kuzu, kuzu) (push) Waiting to run
Weighted Edges Tests / Test Weighted Edges with Different Graph Databases (neo4j, neo4j) (push) Waiting to run
Weighted Edges Tests / Test Weighted Edges Examples (push) Waiting to run
Test Suites / Build CI Environment (push) Has been cancelled
Test Suites / Basic Tests (push) Has been cancelled
Test Suites / End-to-End Tests (push) Has been cancelled
Test Suites / CLI Tests (push) Has been cancelled
Test Suites / Slow End-to-End Tests (push) Has been cancelled
Test Suites / Graph Database Tests (push) Has been cancelled
Test Suites / Vector DB Tests (push) Has been cancelled
Test Suites / Temporal Graph Test (push) Has been cancelled
Test Suites / Search Test on Different DBs (push) Has been cancelled
Test Suites / Example Tests (push) Has been cancelled
Test Suites / Notebook Tests (push) Has been cancelled
Test Suites / OS and Python Tests Ubuntu (push) Has been cancelled
Test Suites / OS and Python Tests Extended (push) Has been cancelled
Test Suites / LLM Test Suite (push) Has been cancelled
Test Suites / S3 File Storage Test (push) Has been cancelled
Test Suites / Run Integration Tests (push) Has been cancelled
Test Suites / MCP Tests (push) Has been cancelled
Test Suites / Docker Compose Test (push) Has been cancelled
Test Suites / Docker CI test (push) Has been cancelled
Test Suites / Relational DB Migration Tests (push) Has been cancelled
Test Suites / Distributed Cognee Test (push) Has been cancelled
Test Suites / DB Examples Tests (push) Has been cancelled
Test Suites / Test Completion Status (push) Has been cancelled
Test Suites / Claude Code Review (push) Has been cancelled
Test Suites / basic checks (push) Has been cancelled
39 lines
1.4 KiB
Plaintext
Executable File
39 lines
1.4 KiB
Plaintext
Executable File
set -euo pipefail
|
|
|
|
AWS_REGION=${region:-eu-west-1}
|
|
AWS_DEPLOYMENT_ACCOUNT=${account:-463722570299}
|
|
AWS_REPOSITORY=${repo:-"${AWS_DEPLOYMENT_ACCOUNT}.dkr.ecr.${AWS_REGION}.amazonaws.com"}
|
|
|
|
STAGE=${stage:-"dev"}
|
|
SHA_SHORT="$(git rev-parse --short HEAD)"
|
|
CUR_DATE="$(date +%Y%m%d%H%M%S)"
|
|
VERSION="$STAGE-$CUR_DATE-$SHA_SHORT"
|
|
IMAGE_NAME=${image_name:-cognee-${STAGE}}
|
|
|
|
REPO_NAME="${AWS_REPOSITORY}/${IMAGE_NAME}"
|
|
FULL_IMAGE_NAME="${REPO_NAME}"
|
|
APP_DIR=${app_dir:-"."}
|
|
|
|
# ECHO "$FULL_IMAGE_NAME:latest"
|
|
|
|
PUBLISH=${publish:-false}
|
|
|
|
echo "Building docker image ${FULL_IMAGE_NAME} located in dir ${app_dir}"
|
|
|
|
pushd "${APP_DIR}" &&
|
|
docker buildx build --platform linux/amd64 \
|
|
--build-arg STAGE=${STAGE} \
|
|
-t "${FULL_IMAGE_NAME}:latest" -t "${FULL_IMAGE_NAME}:${VERSION}" . &&
|
|
echo "${VERSION}" >/tmp/.DOCKER_IMAGE_VERSION &&
|
|
echo "Successfully built docker image ${FULL_IMAGE_NAME}"
|
|
|
|
if [ "${PUBLISH}" = true ]; then
|
|
echo "Pushing docker image ${FULL_IMAGE_NAME} to ECR repository to AWS account ${AWS_DEPLOYMENT_ACCOUNT}"
|
|
if [ "${PUBLISH}" = true ]; then
|
|
echo "logging in"
|
|
aws ecr get-login-password --region "${AWS_REGION}" | docker login --username AWS --password-stdin "${AWS_REPOSITORY}"
|
|
fi
|
|
docker push "${FULL_IMAGE_NAME}:latest" && docker push "${FULL_IMAGE_NAME}:${VERSION}" &&
|
|
echo "Successfully pushed docker image ${FULL_IMAGE_NAME} to ECR repository"
|
|
fi
|