From 0e9a4c2684e8e849d46af0d7f5daf406d103924a Mon Sep 17 00:00:00 2001 From: Poulpe Date: Tue, 21 Apr 2026 10:38:08 +0000 Subject: [PATCH] Dockerfile : ajoute openssh-client pour worker monitor Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index a6d2092..ee46bcc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ FROM python:3.12-slim +RUN apt-get update && apt-get install -y --no-install-recommends openssh-client && rm -rf /var/lib/apt/lists/* + WORKDIR /app RUN pip install --no-cache-dir \