From 76eeb39a98f75eb04209bc64086192a9f81d8f53 Mon Sep 17 00:00:00 2001 From: Bastian Hofmann Date: Sat, 18 May 2019 08:45:55 +0200 Subject: [PATCH] Add dockerignore file to prevent local node_modules to be copied into the portal image Otherwise the portal linux image could contain node_modules built for darwin when the image is built on a Mac, which makes the angular build fail. Signed-off-by: Bastian Hofmann --- .dockerignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..cb1bb5248 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +src/portal/node_modules/ \ No newline at end of file