From 26538aa69f7eeea8a2f618823b19f5d1cd83e3fa 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..d077d26 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|^([1-9][.][1-9][0-9]*).*$|\1|p')/site-packages && \ chown pythonic:pythonic --recursive /opt/pythonic/.local USER pythonic:pythonic