diff --git a/.dockerignore b/.dockerignore index 8ffb737e2c..2b544d5934 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,47 @@ +# Files to ignore by Docker when transfering context + **/.git /docs/ /notebooks/ + +# Back-up files +**/*~ +**/*.swp + +# Generic auto-generated build files +**/*.pyc +**/*.pyo +**/.ipynb_checkpoints/ + +# Specific auto-generated build files +/.eggs +/.tox +**/__pycache__ +/api_client/python/build/ +/cli_client/python/build/ +/importer_client/python/build/ +**/dependencies/ +/*.egg-info + +# Ignore frontend build related files +**/node_modules +/timesketch/static/dist +/timesketch/frontend/dist +/timesketch/frontend/yarn.lock + +# Test files +**/.coverage +**/tests-coverage.txt + +# Exclude Vagrant runtime files +/vagrant/.vagrant/ +/vagrant/*.log + +# Exclude .venv folder +/.venv/ + +# Exclude Visual Studio Code files +/.vscode/* + +# Exclude JetBrains IDE files +/.idea/