mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 01:07:46 +00:00
feat: publish docker image alongside npm package (#197)
This commit is contained in:
26
packages/cli/Dockerfile.sandbox
Normal file
26
packages/cli/Dockerfile.sandbox
Normal file
@@ -0,0 +1,26 @@
|
||||
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 \
|
||||
&& 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-code'
|
||||
Reference in New Issue
Block a user