From b4fe21402f6947b631be03517d87dde0dddc2f64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Clgen=20Sar=C4=B1kavak?= Date: Thu, 16 Oct 2025 21:37:05 +0300 Subject: [PATCH] Ignore venv from message compilation The goal is to exclude 3rd parties from compilemessages input --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5ee5efd9e8..2018de0a66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN apt-get update \ # copy project COPY . . -RUN python -m django compilemessages +RUN python -m django compilemessages --ignore .venv # ENTRYPOINT is specified only in the local docker-compose.yml to avoid # accidentally running it in deployed environments.