From 32462c2b5e18ba86b46253748b28e59ec8df509e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 24 Jun 2024 10:22:33 +0200 Subject: [PATCH] fix(rundev): update base docker image automatically Otherwise user is stick with the image downloaded when first starting with Weblate. Fixes #11925 --- rundev.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rundev.sh b/rundev.sh index afed153b5b91..3c3aa1b236e0 100755 --- a/rundev.sh +++ b/rundev.sh @@ -25,6 +25,8 @@ build() { mkdir -p data # Build single requirements file sed -n 's/^ "\([][a-zA-Z._0-9-]\+[<>=].*\)".*/\1/p' ../pyproject.toml > weblate-dev/requirements.txt + # Fetch up-to-date base docker image + docker pull weblate/weblate:bleeding # Build the container docker compose build --build-arg USER_ID="$(id -u)" --build-arg GROUP_ID="$(id -g)"