michael-s-molina commented on code in PR #35235:
URL: https://github.com/apache/superset/pull/35235#discussion_r2369693476


##########
docker/docker-bootstrap.sh:
##########
@@ -18,9 +18,16 @@
 
 set -eo pipefail
 
-# Make python interactive
+# Install critical dependencies first in dev mode to fix volume mount issues
 if [ "$DEV_MODE" == "true" ]; then
     if [ "$(whoami)" = "root" ] && command -v uv > /dev/null 2>&1; then
+      echo "Installing critical dependencies for dev mode..."
+      # Install pydantic first as it's needed for imports
+      uv pip install --no-cache-dir "pydantic>=2.8.0"
+      echo "Installing base requirements"
+      uv pip install -r /app/requirements/base.txt
+      echo "Reinstalling superset-core in editable mode"
+      uv pip install -e /app/superset-core

Review Comment:
   @mistercrunch `superset-core` is similar to `superseet-ui-core`. I recommend 
reading [[SIP-177] Proposal for SQL Lab 
Extensions](https://github.com/apache/superset/issues/34162) to understand the 
structure better.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to