jesperbagge commented on issue #34557: URL: https://github.com/apache/superset/issues/34557#issuecomment-3155991080
Without fully understanding what `uv` brings to the table I did what @dosu suggested and now have a working image. Neat! ```docker FROM apache/superset:5.0.0-dev USER root COPY requirements.txt . RUN uv pip install --no-cache-dir -r requirements.txt USER superset WORKDIR /app ``` -- 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]
