- .dockerignore
Ignore files and directories
docker build . will send over all the content of the corrent directory to the docker daemon. You usually don't want that. So add a file called .dockerignore to the root of your project
.git/ temp/
docker build . will send over all the content of the corrent directory to the docker daemon. You usually don't want that. So add a file called .dockerignore to the root of your project
.git/ temp/