Is it possible to ignore files that would be copied in cibuidlwheel
docker container ?
#1495
Unanswered
FirelightFlagboy
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'm working on a project where we use
cibuildwheel
to build our wheel.I'm facing a problem where
cibuildwheel
copies files that I don't want to be copied (likenode_modules
files that aren't used by the python project).At best, that slow down the process because it copies unnecessary files (
node_modules
folder are heavy 😛)At worst, It failed to build the wheel because it have copied some configuration files that are specific for my setup and would not work on the container.
It is possible to configure
cibuildwheel
to not copy some specified files (like.gitignore
or.dockerignore
) ?Beta Was this translation helpful? Give feedback.
All reactions