summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorBrandon Keiji <[email protected]>2025-05-30 18:02:27 +0000
committerGitHub <[email protected]>2025-05-30 18:02:27 +0000
commit816cc08a8f493bb7268936ffe314587bb4444f88 (patch)
tree4b8792201a911c08b46ce83440a263ff36473745 /Dockerfile
parent8c46108a852128d1d0792c149746631d83fc58cf (diff)
fix(sandbox): set default env var to 'gemini-cli-sandbox' (#620)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index b3a1dc28..566329aa 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,7 @@
FROM docker.io/library/node:20-slim
-# ENV SANDBOX="gemini-cli-sandbox"
+ARG SANDBOX_NAME="gemini-cli-sandbox"
+ENV SANDBOX="$SANDBOX_NAME"
# install minimal set of packages, then clean up
RUN apt-get update && apt-get install -y --no-install-recommends \