Revert "refactor(agent-images): use explicit Debian base"
tracker-policy-pr / check-pr (pull_request) Successful in 13s
test / integration-docker (pull_request) Successful in 36s
test / unit (pull_request) Successful in 45s
lint / lint (push) Successful in 57s
test / integration-firecracker (pull_request) Failing after 5m24s
test / coverage (pull_request) Has been skipped
test / publish-infra (pull_request) Has been skipped

This reverts commit 51b82f80d1.
This commit is contained in:
2026-07-21 17:41:04 +00:00
parent 51b82f80d1
commit 735d8ed5f3
5 changed files with 29 additions and 55 deletions
+2 -7
View File
@@ -1,8 +1,8 @@
# bot-bottle Pi provider image.
#
# Debian stable, git/network tooling, and the Pi coding-agent CLI.
# Node LTS, git/network tooling, and the Pi coding-agent CLI installed globally.
FROM debian:trixie-slim
FROM node:22-trixie-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
@@ -13,14 +13,9 @@ RUN apt-get update \
openssh-client \
podman \
ripgrep \
nodejs \
npm \
&& ln -s /usr/bin/fdfind /usr/local/bin/fd \
&& rm -rf /var/lib/apt/lists/*
RUN groupadd --gid 1000 node \
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node
RUN apt-get update \
&& apt-get install -y --no-install-recommends python3 python3-pip python3-venv \
&& rm -rf /var/lib/apt/lists/*