From 06505c3728a9579a89304c82ddd6ad168479bc8d Mon Sep 17 00:00:00 2001 From: Aymeric Date: Wed, 8 Jul 2026 11:14:31 +0200 Subject: [PATCH] =?UTF-8?q?:bug:=20:=20Correction=20d=C3=A9pendance=20APK?= =?UTF-8?q?=20virtual=20env=20python?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 00-Docker/04-multistage-build/01-contruction-image-finale.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/00-Docker/04-multistage-build/01-contruction-image-finale.md b/00-Docker/04-multistage-build/01-contruction-image-finale.md index d002e03..54634de 100644 --- a/00-Docker/04-multistage-build/01-contruction-image-finale.md +++ b/00-Docker/04-multistage-build/01-contruction-image-finale.md @@ -31,7 +31,7 @@ le code pour mettre en le multi-stage build. FROM alpine:3.18 AS builder # Installer Python et outils de build -RUN apk add --no-cache python3 py3-pip py3-venv build-base libffi-dev +RUN apk add --no-cache python3 py3-pip py3-virtualenv build-base libffi-dev # Créer un venv propre RUN python3 -m venv /venv