Correction de la commande d'installation de Playwright dans le Dockerfile
Build and Push Docker Image / build-and-push (push) Successful in 6m7s

- Ajout de l'instruction 'python -m' avant 'playwright install'
- Amélioration de la clarté et de la précision de la commande
This commit is contained in:
pyriec
2026-09-09 19:46:27 +02:00
parent aab528f5bc
commit bc3040f687
+1 -1
View File
@@ -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 . .