-
-
Notifications
You must be signed in to change notification settings - Fork 716
feat: Allow temp dir for poetry docker builds #638
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@antonbabenko could I get a review on this when convenient, as this stops me from building layers in github action pipelines |
@antonbabenko this change looks good to me and my latest changes that did to rework the build plan approach doesn't interfere with this one. |
## [7.18.0](v7.17.1...v7.18.0) (2025-01-08) ### Features * Allow temp dir for poetry docker builds ([#638](#638)) ([65ffea2](65ffea2))
This PR is included in version 7.18.0 🎉 |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Description
Allows optionally specifying a temp dir for poetry to bring parity with npm and pip
Motivation and Context
Docker CLI on ubuntu default for github actions, does not allow mounting /tmp https://stackoverflow.com/questions/65267251/docker-bind-mount-directory-in-tmp-not-working
This results in a frustrating situation where terraform passes locally but fails with strange error in CI pipeline.
Fixes: #545
Breaking Changes
N/A
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectsAdded temp dir to one poetry example and left rest untouched to prove not breaking change
pre-commit run -a
on my pull request