refactor(agent-images): use explicit Debian base

This commit is contained in:
2026-07-21 17:40:18 +00:00
committed by didericis
parent 0ff11d8ed7
commit e3258d0683
5 changed files with 55 additions and 29 deletions
+7 -2
View File
@@ -1,8 +1,8 @@
# bot-bottle Pi provider image.
#
# Node LTS, git/network tooling, and the Pi coding-agent CLI installed globally.
# Debian stable, git/network tooling, and the Pi coding-agent CLI.
FROM node:22-trixie-slim
FROM debian:trixie-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
@@ -13,9 +13,14 @@ 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/*