Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion .github/workflows/docker-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,25 @@
- name: Build docs image
run: docker build --progress=plain -t nexent/nexent-docs:${{ github.event.inputs.app_version }} -t nexent/nexent-docs -f deploy/images/dockerfiles/docs/Dockerfile .

build-sandbox:
runs-on: ${{ fromJson(inputs.runner_label_json) }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build sandbox image
run: docker build --build-arg MIRROR=https://pypi.tuna.tsinghua.edu.cn/simple --build-arg APT_MIRROR=tsinghua -t nexent/nexent-sandbox:${{ github.event.inputs.app_version }} -t nexent/nexent-sandbox -f deploy/images/dockerfiles/sandbox/Dockerfile .

build-mcp:
Comment thread
WMC001 marked this conversation as resolved.
Dismissed
runs-on: ${{ fromJson(inputs.runner_label_json) }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build MCP image
run: docker build --build-arg MIRROR=https://pypi.tuna.tsinghua.edu.cn/simple --build-arg APT_MIRROR=tsinghua -t nexent/nexent-mcp:${{ github.event.inputs.app_version }} -t nexent/nexent-mcp -f deploy/images/dockerfiles/mcp/Dockerfile .

deploy:

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}
runs-on: ${{ fromJson(inputs.runner_label_json) }}
needs: [ build-main, build-data-process, build-web, build-docs ]
needs: [ build-main, build-data-process, build-web, build-docs, build-sandbox, build-mcp ]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion deploy/env/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ IND_AIDP_IMAGE_SIGNING_KEY=

# Default sandbox isolation level: local / docker / wasm.
# 'local' preserves backward-compatibility for existing deployments.
NEXENT_SANDBOX_DEFAULT_LEVEL=local
NEXENT_SANDBOX_DEFAULT_LEVEL=docker

# Default sandbox container lifecycle scope: session / system.
# session = one container per agent_run, destroyed on run end (strictest isolation).
Expand Down
Loading