potiuk edited a comment on pull request #13640: URL: https://github.com/apache/airflow/pull/13640#issuecomment-759118818
I think i know what could have happend. If you have "apache-airflow" as requirement for "ewah", then installing "ewah" might pull airflow from PYPI and install it over the installed in the previous step. In such case the new image will not help but you might either: 1) remove airflow from requirements of ewah 2) or install airflow AGAIN from master after installing ewah 3) install evah with `--no-deps` (but then if it has any other dependencies you must install them separately) Generally enable verbose output on your docker build. You seem to use BUILDX as default but I very much prefer the standard 'docker build` because then you see what each command does (also I guess you can enable verbose output for your builldx and we can see better what's going on) UPDATE: I see you do not have airflow in your setup.py /cfg but stil enabling verbose output during build would be handy (and try the master image) ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
