Revert "refactor(agent-images): use explicit Debian base"

This reverts commit 51b82f80d1.
This commit is contained in:
2026-07-21 17:41:04 +00:00
committed by didericis
parent e3258d0683
commit f6ae485b68
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/*