From fc29e4b36e136c735543144cae7e7e78cc06fd14 Mon Sep 17 00:00:00 2001 From: Joseph Ware <53935796+DiamondJoseph@users.noreply.github.com> Date: Thu, 4 Dec 2025 15:57:49 +0000 Subject: [PATCH] fix: Correct oder and format of symlink creation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fb592f6c14..c171af9b7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -60,7 +60,7 @@ ENV MPLCONFIGDIR=/tmp/matplotlib # Make a path to site-packages that is invariant with python version # This allows our pathMapping in launch.jsons to always find build blueapi WORKDIR /venv/lib -RUN ln -s python python${PYTHON_VERSION} +RUN ln -sf python* python RUN groupadd -g 1000 blueapi && \ useradd -m -u 1000 -g blueapi blueapi