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
10 changes: 3 additions & 7 deletions sandboxes/nemoclaw/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ RUN npm install -g @grpc/grpc-js @grpc/proto-loader js-yaml
# Fix @hono/node-server authorization bypass (GHSA-wc8c-qw6v-h7f6)
RUN npm install -g @hono/node-server@1.19.11

# Allow the sandbox user to read the default policy (the startup script
# copies it to a writable location; this chown covers non-Landlock envs)
RUN chown -R sandbox:sandbox /etc/openshell

# Stage the NeMoClaw DevX extension source
COPY nemoclaw-ui-extension/extension/ /opt/nemoclaw-devx/

Expand All @@ -50,9 +46,9 @@ RUN set -e; \
cd /opt/nemoclaw-devx && npm install --production; \
UI_DIR="$(npm root -g)/openclaw/dist/control-ui"; \
esbuild /opt/nemoclaw-devx/index.ts \
--bundle \
--format=esm \
--outfile="$UI_DIR/assets/nemoclaw-devx.js"; \
--bundle \
--format=esm \
--outfile="$UI_DIR/assets/nemoclaw-devx.js"; \
HASH=$(md5sum "$UI_DIR/assets/nemoclaw-devx.js" | cut -c1-8); \
sed -i "s|</head>|<link rel=\"stylesheet\" href=\"./assets/nemoclaw-devx.css?v=${HASH}\">\n</head>|" "$UI_DIR/index.html"; \
sed -i "s|</head>|<script type=\"module\" src=\"./assets/nemoclaw-devx.js?v=${HASH}\"></script>\n</head>|" "$UI_DIR/index.html"; \
Expand Down
6 changes: 0 additions & 6 deletions sandboxes/openclaw/policy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,3 @@ network_policies:
binaries:
- { path: /usr/local/bin/claude }
- { path: /usr/bin/gh }



inference:
allowed_routes:
- local
Loading