I develop some dependencies locally and I have a dep_requirements.txt file that looks like this:
-e path_to_dependency_1-e path_to_dependency_2-e path_to_dependency_3
Is it ok to leave it that way for production when building the production docker? Or I should remove the -e because it prevents Python caching, "compiling" or something else?
I'm basically asking, is -e
(editable) problematic to use in production environment? will it harm performance