From a7bdd47fcdcbb88b5aff3c786e7fe18cccf7fdc4 Mon Sep 17 00:00:00 2001 From: LoveIsGrief Date: Tue, 14 Jan 2020 17:00:07 +0100 Subject: [PATCH] docker: Add more files to ignore Helps with build speed on the local machine #32 - Docker image --- .dockerignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.dockerignore b/.dockerignore index 97bba075..1adffc0d 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,11 @@ +# Dot directories .gradle/ .idea/ .git/ + +# Build files +build/ + +# We execute COPY . . +# Modifying these files would unnecessarily invalidate the build context Dockerfile