DEV Community

Discussion on: Docker-first Python development

Collapse
 
jeremywmoore profile image
Jeremy Moore

You can definitely do this, but Docker still has to create a new layer for it. Copying it from the builder stage could definitely help if building the src dir is more complicated than copying over a single directory.

Collapse
 
davidcoy profile image
David Coy

That's true, I didn't think of the extra layer Docker would add in the process.