I have a Dockerfile trying to package and deploy a web app to a container. The code of app fetches from git repository during Docker image building.
Here\'s the Dockerfile s
I ran into this same issue myself, and I just decided to use the --no-cache option when I build the image, rather than trying to single out the git repo.