Symlink for 3.11 should point to latest 3.11* (not earliest)
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
index 578804c..02b5afd 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 | head -n 1))
+LATEST_VERSION=$(basename $(find ./doc -iname 3.11* -type d | tail -n 1))
 rm -f doc/3.11
 ln -s -f ${LATEST_VERSION} doc/3.11