From b7ef8e299bd2fe0ad01bf826950e5ce684ca1afd Mon Sep 17 00:00:00 2001 From: Andreas Kohn Date: Tue, 21 Apr 2020 14:33:06 +0200 Subject: [PATCH] Do not send the 'node' directory to docker (#275) This directory contains the NodeJS runtime for Gradle when building the frontend assets, but it isn't needed when packaging the docker image. --- .dockerignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.dockerignore b/.dockerignore index 614c583f4..83be8b725 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,7 +1,8 @@ .git -node_modules +node/ +node_modules/ .gradle .idea build/ out/ -*.hprof \ No newline at end of file +*.hprof