From 08ae8046cbc8e8d899f47c28c058d0c9eb129650 Mon Sep 17 00:00:00 2001 From: Martin Lehmann Date: Fri, 16 Aug 2024 11:49:03 +0200 Subject: [PATCH] fix: Use the public function to preinstall elk.js --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7eacb83..9315f48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,6 +56,6 @@ RUN python frontend/fetch-version.py USER 1001 # Pre-install npm dependencies for context diagrams -RUN python -c "from capellambse_context_diagrams import _elkjs; _elkjs._install_required_npm_pkg_versions()" +RUN python -c "from capellambse_context_diagrams import install_elk; install_elk()" ENTRYPOINT ["/entrypoint.sh"]