@matthias-hausberger/beige 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/sandbox/Dockerfile +6 -1
package/package.json
CHANGED
package/sandbox/Dockerfile
CHANGED
|
@@ -4,12 +4,17 @@ FROM denoland/deno:2.2.3
|
|
|
4
4
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
5
5
|
curl \
|
|
6
6
|
jq \
|
|
7
|
-
git \
|
|
8
7
|
ca-certificates \
|
|
9
8
|
nodejs \
|
|
10
9
|
npm \
|
|
11
10
|
&& npm install -g pnpm \
|
|
12
11
|
&& rm -rf /var/lib/apt/lists/*
|
|
12
|
+
# git is intentionally NOT installed in the container. Agents must use the
|
|
13
|
+
# git tool (/tools/bin/git -> /beige/tool-client) which runs on the gateway
|
|
14
|
+
# host where the SSH key lives. Installing system git leads agents to call
|
|
15
|
+
# /usr/bin/git directly, which has no credentials, hits dubious-ownership
|
|
16
|
+
# errors on host-owned repo files, and cannot resolve /workspace paths on
|
|
17
|
+
# the gateway.
|
|
13
18
|
|
|
14
19
|
# Create workspace directory
|
|
15
20
|
RUN mkdir -p /workspace /tools/bin /tools/packages /beige
|