if I want to change a file used in a docker container, do I recreate the image and delete the old container?
I feel like I have a fundamental misunderstanding of how to work with docker. Say that I have test.py which prints 1+1. I then proceed to containerize it with a Dockerfile that has FROM, CMD, etc... After building the image,…