From 11f2b23ad386a1ead0c10a4480057ab4442ea3fb Mon Sep 17 00:00:00 2001 From: Dave Jansen Date: Sat, 7 Dec 2019 12:08:16 +0900 Subject: [PATCH] Added .dockerignore as per recommendation Though the Dockerfile only copies specific files anyway, if someone for whatever reason places their node_modules folder inside their src folder for example, this is an extra check to make sure no pre-existing node_modules are copied over. --- .dockerignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..713d500 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,2 @@ +node_modules/ +.env