ninja-fix: Symlink for 3.11 should point to latest 3.11* (not earliest)
 the previous fix for this in 7ecaff4 wasn't sorting, so head or tail was meaningless
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
index 02b5afd..a0804b1 100755
--- a/docker-entrypoint.sh
+++ b/docker-entrypoint.sh
@@ -27,7 +27,7 @@
 make .build-doc
 
 # Relink the 3.11 version
-LATEST_VERSION=$(basename $(find ./doc -iname 3.11* -type d | tail -n 1))
+LATEST_VERSION=$(basename $(find ./doc -iname 3.11* -type d | sort | tail -n 1))
 rm -f doc/3.11
 ln -s -f ${LATEST_VERSION} doc/3.11