Our Python application is using docker container design. To release a fix in a .py file, we generate a new image with all application. This way to deploy the fix is not optimal adn to risky.
We want to release in production, only the impacted component or file for every release (following Open/closed principles). And so to keep under control all the operational risk related to the releasing, to reduce the time for QA test ect...
I am beginner in the docker design.
This agile mode of deployment, is it possible with the docker container design ?
Thank you.