mistercrunch commented on code in PR #35235: URL: https://github.com/apache/superset/pull/35235#discussion_r2369432922
########## 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 Review Comment: Should we do development.txt here? -- 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: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org