mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 21:03:26 +00:00
5 lines
273 B
Docker
5 lines
273 B
Docker
FROM node:22-bookworm-slim
|
|
RUN apt-get update -qq && apt-get install -y -qq --no-install-recommends ca-certificates > /dev/null 2>&1 && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
npm install -g --silent @sandbox-agent/cli@latest && \
|
|
sandbox-agent install-agent claude
|