FROM docker.io/library/node:22-bookworm ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0 RUN apt-get update \ && apt-get install -y --no-install-recommends \ bash \ bubblewrap \ build-essential \ ca-certificates \ curl \ git \ jq \ openssh-client \ python3 \ ripgrep \ && corepack enable \ && npm install -g bun@1.3.10 opencode-ai@latest @openai/codex@latest \ && rm -rf /var/lib/apt/lists/* WORKDIR /workspace CMD ["bash"]