Files
spoon/docker/agent-job.Dockerfile
T
Gabriel Brown f33f76d874
Build and Push Spoon Images / quality (push) Successful in 1m52s
Build and Push Spoon Images / build-images (push) Successful in 8m19s
Trying to build worker images
2026-06-22 20:29:10 -04:00

25 lines
488 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 \
build-essential \
ca-certificates \
curl \
git \
jq \
openssh-client \
python3 \
ripgrep \
&& corepack enable \
&& npm install -g bun@1.3.10 opencode-ai@latest \
&& rm -rf /var/lib/apt/lists/*
RUN useradd --create-home --shell /bin/bash agent
USER agent
WORKDIR /workspace
CMD ["bash"]