diff --git a/deployment/images/Dockerfile.deb-tools b/deployment/images/Dockerfile.deb-tools index 88301f4..04c8dcf 100644 --- a/deployment/images/Dockerfile.deb-tools +++ b/deployment/images/Dockerfile.deb-tools @@ -13,8 +13,14 @@ RUN apt-get update && apt-get install -y \ apt-transport-https \ ca-certificates \ gnupg \ + python3.11 \ + python3-pip \ + pipx \ && rm -rf /var/lib/apt/lists/* +RUN pipx ensurepath +RUN pipx install poetry + # Add Kubernetes repository and install kubectl RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" \ && chmod +x kubectl \