Files
spoon/docker/agent-job.Dockerfile
T
Gabriel Brown 930fbf5965
Build and Push Spoon Images / quality (push) Successful in 1m40s
Build and Push Spoon Images / build-images (push) Successful in 7m0s
Try to fix workers and workspace
2026-06-22 23:17:27 -04:00

24 lines
465 B
Docker

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"]