From 315e8b64b88b30dd595e1d93ec2905478b8c3487 Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Mon, 4 Apr 2016 17:54:32 +0200 Subject: [PATCH] Add **/*.test to .dockerignore `*.test` files are generated by `go test`, do not include them into the build context. It will lighter a bit the build context.. Signed-off-by: Vincent Demeester --- .dockerignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index cc707f389..fed966aed 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,5 @@ dist/ vendor/ !dist/traefik -site/ \ No newline at end of file +site/ +**/*.test