michael-s-molina commented on code in PR #35235:
URL: https://github.com/apache/superset/pull/35235#discussion_r2369686078
##########
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:
@mistercrunch I think there are folks that use it for production even if not
recommended 🤷🏼♂️
--
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]