From 7a0023d31a0a6fa7407006dace1a713e794ac1a4 Mon Sep 17 00:00:00 2001 From: ajax146 <31014239+ajax146@users.noreply.github.com> Date: Thu, 11 Jun 2026 17:55:37 -0700 Subject: [PATCH] This adds a docker ignore file to slim down the docker image --- .dockerignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000..2770e3e2 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,29 @@ +# Temp files, cache files, etc that we do not need in the container +.venv +*.pyc +.vscode +__pycache__ +.pytest_cache +.coverage +.hypothesis +.idea/ + +# Folders that contain important information in the repo, but are not used to run the bot itself +.github/ +DBs/ +documentation/ +tests/ + +# Files that contain information not relevant to running the code itself +.dockerignore +.flake8 +.gitignore +.pylintrc +changelog.md +config.default.yml +default.env +docker-compose.yml +Dockerfile +LICENSE +Makefile +README.md