Trying to dockerize a django project for the first time, I understand that for production my Dockerfile should have ADD
that copies the django project to the container.
But for local development I need every change to the code to take effect immediately, for that I read it's recommended to mount a volume when I run docker ( docker run -v path:path ) but does that mean I need to have a different Dockerfile for local development? one that doesn't run the ADD
command?