diff options
| author | Brandon Keiji <[email protected]> | 2025-05-29 21:01:44 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-29 14:01:44 -0700 |
| commit | dc94a03f39c712a0bb9b4ab0de7bac0e29c2b12e (patch) | |
| tree | 5a8fa670e56ac258684e61b98b500f1a0f798d9f /packages/cli/Dockerfile.sandbox | |
| parent | 6a1b94529bd39370b81313e49b51679377416160 (diff) | |
feat: publish root Dockerfile to our image registry (#599)
Diffstat (limited to 'packages/cli/Dockerfile.sandbox')
| -rw-r--r-- | packages/cli/Dockerfile.sandbox | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/packages/cli/Dockerfile.sandbox b/packages/cli/Dockerfile.sandbox deleted file mode 100644 index 7250bbf3..00000000 --- a/packages/cli/Dockerfile.sandbox +++ /dev/null @@ -1,28 +0,0 @@ -FROM docker.io/library/node:20-slim - -ARG CLI_VERSION -ENV SANDBOX=${CLI_VERSION} - -# install minimal set of packages, then clean up -RUN apt-get update && apt-get install -y --no-install-recommends \ - man-db \ - curl \ - dnsutils \ - less \ - jq \ - bc \ - gh \ - git \ - unzip \ - rsync \ - ripgrep \ - procps \ - psmisc \ - lsof \ - socat \ - && apt-get clean \ - && rm -rf /var/lib/apt/lists/* - -RUN --mount=type=secret,id=npmrc,dst=/root/.npmrc npm install -g @gemini-code/cli@${CLI_VERSION} --verbose - -ENTRYPOINT 'gemini' |
