From 92a19bf41c6718cb74b4a64a40943197660437ca Mon Sep 17 00:00:00 2001 From: shovon <61104583+ajshovon@users.noreply.github.com> Date: Fri, 25 Oct 2024 12:36:38 +0600 Subject: [PATCH] create .dockerignore file --- .dockerignore | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..2f8f89b --- /dev/null +++ b/.dockerignore @@ -0,0 +1,26 @@ +# Ignore Git and GitHub files +.git +.github/ + +# Ignore Husky configuration files +.husky/ + +# Ignore documentation and metadata files +CONTRIBUTING.md +LICENSE +README.md + +# Ignore environment examples and sensitive info +.env +*.local +*.example + +# Ignore node modules, logs and cache files +**/*.log +**/node_modules +**/dist +**/build +**/.cache +logs +dist-ssr +.DS_Store