From be3cee8e3c4f086ed5c4837f0a8c65fd23fe43e8 Mon Sep 17 00:00:00 2001 From: Timofey Gelazoniya Date: Sun, 29 Jun 2025 13:21:31 +0300 Subject: [PATCH] chore: update dockerignore --- .dockerignore | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 4220d0e..ec4abb3 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,5 +1,23 @@ +# Ignore Rust build artifacts. /target + +# Ignore downloaded data. /rules + +# Ignore runtime configuration files. +/config +/default.json +/template.json + +# Ignore local log directories if they are created. /log + +# Ignore git history and local git configuration. .git -.gitignore \ No newline at end of file +.gitignore + +# Ignore Docker orchestration files. +docker-compose.yml + +# Ignore documentation and other meta-files. +README.md \ No newline at end of file