From 07685f5409a4fcaebdacfbccf8e11eda89dbc84e Mon Sep 17 00:00:00 2001 From: Maxim Snesarev Date: Thu, 2 Apr 2026 22:38:09 +0300 Subject: [PATCH] Add .dockerignore file to exclude unnecessary files from Docker context - Created a new .dockerignore file to prevent inclusion of node_modules, build artifacts, and logs in the Docker context. - Specified additional directories and files related to the apps and backups to streamline the Docker build process. --- .dockerignore | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..42d692f --- /dev/null +++ b/.dockerignore @@ -0,0 +1,11 @@ +node_modules +.next +.turbo +.git +*.log + +apps/scraper +apps/web/.next +apps/web/node_modules + +docker/backups