From e156f896f8af3b47b74f9a4bc9e4fe74930b1292 Mon Sep 17 00:00:00 2001 From: Simon Jordan Date: Tue, 19 Nov 2024 14:01:29 +0000 Subject: [PATCH] Include .dockerignore file --- .dockerignore | 39 +++++++++++++++++++++++++++++++++++++++ .gitignore | 3 +-- 2 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..5fb2ff3 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,39 @@ +# Node and npm +node_modules + +# Python +__pycache__/ +*.py[cod] + +# CMake +build/ +CMakeFiles/ +CMakeCache.txt +cmake_install.cmake + +# Git +.git +.gitignore + +# VSCode and IDE +.vscode/ +.devcontainer/ + +# Temporary files +*.swp +*.tmp +*.log +*.bak +*.swo +*.DS_Store + +# System files +Thumbs.db +desktop.ini + +# Other +*.tar +*.zip +*.gz +*.rar +*.7z diff --git a/.gitignore b/.gitignore index 1dd3aeb..9cbb97a 100644 --- a/.gitignore +++ b/.gitignore @@ -81,5 +81,4 @@ node_modules/ *.7z # Docker -docker-compose.override.yml -.dockerignore \ No newline at end of file +docker-compose.override.yml \ No newline at end of file