From 9ff35e48c34c502d0343ddca967fd4e42a4d47c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Esteban=20S=C3=A1nchez?= Date: Mon, 20 Nov 2023 14:26:43 +0100 Subject: [PATCH] Added .dockerignore (#25) * Added .dockerignore * Fixed duplicated --- .dockerignore | 10 ++++++++++ .gitignore | 5 ++++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..2d8c466 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,10 @@ +__pycache__/ +.coverage* +.github +.gitignore +.pdm* +.pre-commit-config.yaml +.vscode +build/ +logo.png +tests diff --git a/.gitignore b/.gitignore index 97b792c..5422bd9 100644 --- a/.gitignore +++ b/.gitignore @@ -132,4 +132,7 @@ dmypy.json config.env # Ignore pdm local files -.pdm-python \ No newline at end of file +.pdm-python + +# Ignore ruff files +.ruff_cache