Fix Dockerfile: use docker-cli instead of docker.io

docker.io on Debian Trixie only installs the daemon (dockerd), not the CLI.
The docker CLI is in the separate docker-cli package.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Matt 2025-12-03 16:02:50 +01:00
parent 9385ab09e4
commit db616aece5
1 changed files with 2 additions and 2 deletions

View File

@ -4,11 +4,11 @@ FROM python:3.11-slim
WORKDIR /app WORKDIR /app
# Install system dependencies # Install system dependencies
# - Docker CLI for docker executor # - Docker CLI for docker executor (docker.io only has daemon, need docker-cli for CLI)
# - curl for health checks # - curl for health checks
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
docker.io \ docker-cli \
curl \ curl \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*