quix init
could generate more developer-friendly dockerfiles.
#41
Labels
enhancement
New feature or request
Uh oh!
There was an error while loading. Please reload this page.
The
dockerfile
thatquix init
puts into each app directory is short, and that's good. But it also does a complete re-install of all the python dependencies on every rebuild, and that's bad.A
dockerfile
like this separates out thepip install -r requirements.txt
stage so that it can be cached. That makes rebuilds vastly faster:The cost is a longer
dockerfile
, but since it's autogenerated anyway, that's not too big a price to pay for faster redeployments.The text was updated successfully, but these errors were encountered: