From 968aead14fc5241bc11c0d4b8bfbfda9a0d6575e Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Mon, 1 Nov 2021 11:34:11 -0700 Subject: [PATCH] fix(Dockerignore): Add large test fixtures to `.dockerignore` While running some other analysis on our docker images I noticed that the Docker image for OSM will include the ~30MB of PBF files and test fixtures we use in our fuctional tests. Currently, we don't run anything but the unit tests during the Docker image build, so these files are never used. Since it will save quite a bit of space and reduce network usage every time someone downloads a new copy of the OSM Docker image, removing them seems like the right call. --- .dockerignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.dockerignore b/.dockerignore index 85dcc16d..5c22586e 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,2 +1,6 @@ .git node_modules + +# large test fixtures +test/*.pbf +test/fixtures/combined_vancouver_queens.json