guizsantos commented on PR #27608: URL: https://github.com/apache/superset/pull/27608#issuecomment-2015850155
I think the issue here was that `requirements/development.txt` references `requirements/base.txt` and since `base.txt` is mounted during runtime, it is not available when the second pip install is running. I believe adding `--mount=type=bind,target=./requirements/base.txt,src=./requirements/base.txt \` in addition to the `development.txt` mount fixes the issue. I liked the mount base approach, much prefer it over the `COPY`-based one. -- 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]
