From bc3040f687441301668c9fd4c2448a4312242b3b Mon Sep 17 00:00:00 2001 From: pyriec Date: Wed, 9 Sep 2026 19:46:27 +0200 Subject: [PATCH] Correction de la commande d'installation de Playwright dans le Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Ajout de l'instruction 'python -m' avant 'playwright install' - Amélioration de la clarté et de la précision de la commande --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e440311..4d39739 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -RUN playwright install --with-deps chromium +RUN python -m playwright install --with-deps chromium COPY . .