From cb7a12577d893e0b70f9874c5c9eb90bb73e449f Mon Sep 17 00:00:00 2001 From: dingedi Date: Thu, 12 Jan 2023 14:42:41 +0100 Subject: [PATCH] fix new path for script in dockerfile --- .docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/Dockerfile b/.docker/Dockerfile index 4c3f7f0..fc99af1 100644 --- a/.docker/Dockerfile +++ b/.docker/Dockerfile @@ -15,7 +15,7 @@ RUN python -mvenv venv && ./venv/bin/pip install --upgrade pip COPY . . # Install package from source code, compile translations -RUN ./venv/bin/pip install Babel==2.11.0 && ./venv/bin/python compile_locales.py \ +RUN ./venv/bin/pip install Babel==2.11.0 && ./venv/bin/python scripts/compile_locales.py \ && ./venv/bin/pip install . \ && ./venv/bin/pip cache purge