From b4ddc69392efa4b8bcfecc180765a1c1806b8af7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 5 Dec 2024 17:23:48 +0100 Subject: [PATCH] docs: update docker customize instructions Fixes #13190 --- docs/admin/install/docker.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/admin/install/docker.rst b/docs/admin/install/docker.rst index ad1104a17845..4e1ae36b5d10 100644 --- a/docs/admin/install/docker.rst +++ b/docs/admin/install/docker.rst @@ -2014,7 +2014,7 @@ To override settings at the Docker image level instead of from the data volume: USER root COPY weblate_customization /usr/src/weblate_customization - RUN /app/venv/bin/uv pip install --no-cache-dir /usr/src/weblate_customization + RUN source /app/venv/bin/activate && uv pip install --no-cache-dir /usr/src/weblate_customization ENV DJANGO_SETTINGS_MODULE=weblate_customization.settings USER 1000