From 8af98fd9f26cc2b46585b1638344efcf9e0cd8b1 Mon Sep 17 00:00:00 2001 From: Dylan McReynolds Date: Mon, 5 May 2025 12:46:44 -0700 Subject: [PATCH 1/2] add dockerignore file --- .dockerignore | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..8f9cfad --- /dev/null +++ b/.dockerignore @@ -0,0 +1,38 @@ +# Byte-compiled / cache files +__pycache__/ +*.py[cod] +*.so + +# Virtual environments +.venv/ +env/ +venv/ + +# Distribution / packaging +*.egg-info/ +build/ +dist/ + +# Logs and temporary files +*.log +*.tmp +*.bak + +# Docker / Git / CI +Dockerfile.* +.dockerignore +.git +.gitignore +.github/ +.idea/ +.vscode/ + +# OS and editor files +.DS_Store +Thumbs.db + +# Tests (optional) +tests/ + +# Secret keys or env files (if not required in build) +.env \ No newline at end of file From 9a00e1798f0c8c989a716afb1bf4aa01e974256f Mon Sep 17 00:00:00 2001 From: Dylan McReynolds Date: Mon, 5 May 2025 12:48:56 -0700 Subject: [PATCH 2/2] add .secrets to dockerignore --- .dockerignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 8f9cfad..44d8926 100644 --- a/.dockerignore +++ b/.dockerignore @@ -35,4 +35,5 @@ Thumbs.db tests/ # Secret keys or env files (if not required in build) -.env \ No newline at end of file +.env +.secrets \ No newline at end of file