feat(sandbox): use package config to dictate sandbox image name (#624)

This commit is contained in:
Brandon Keiji
2025-05-30 19:28:46 +00:00
committed by GitHub
parent f91e7c8449
commit 840a2c730f
5 changed files with 32 additions and 22 deletions
+1 -1
View File
@@ -30,7 +30,7 @@
"build:server": "npm run build --workspace packages/server",
"build:packages": "npm run build:server && npm run build:cli",
"build:docker": "scripts/build_sandbox.sh -s",
"tag:docker": "docker tag gemini-code-sandbox:latest ${SANDBOX_IMAGE_REGISTRY:?SANDBOX_IMAGE_REGISTRY not set}/${SANDBOX_IMAGE_NAME:?SANDBOX_IMAGE_NAME not set}:$npm_package_version",
"tag:docker": "docker tag gemini-cli-sandbox ${SANDBOX_IMAGE_REGISTRY:?SANDBOX_IMAGE_REGISTRY not set}/${SANDBOX_IMAGE_NAME:?SANDBOX_IMAGE_NAME not set}:$npm_package_version",
"prepare:cli-packagejson": "node scripts/prepare-cli-packagejson.js",
"publish:sandbox": "scripts/publish-sandbox.sh",
"publish:npm": "npm publish --workspaces ${NPM_PUBLISH_TAG:+--tag=$NPM_PUBLISH_TAG} ${NPM_DRY_RUN:+--dry-run}",