From 70b653cd80ac46a8fd7a33b2839e40f46687c9d6 Mon Sep 17 00:00:00 2001 From: "Patrick J. McNerthney" Date: Wed, 21 Jan 2026 09:45:12 -1000 Subject: [PATCH] Fix --pip-install command line option Signed-off-by: Patrick J. McNerthney --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 644ec2f..0239709 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN \ rm -rf /root/*.whl /root/.cache && \ groupadd --gid 2000 pythonic && \ useradd --uid 2000 --gid pythonic --home-dir /opt/pythonic --create-home --shell /usr/sbin/nologin pythonic && \ - mkdir --parents /opt/pythonic/.local/lib/python3.13/site-packages && \ + mkdir --parents /opt/pythonic/.local/lib/python$(echo $PYTHON_VERSION | sed -n -E 's|^(3[.][0-9]+)[.][0-9]+$|\1|p')/site-packages && \ chown pythonic:pythonic --recursive /opt/pythonic/.local USER pythonic:pythonic