Files
debian/.dockerignore
casjay 3e6d973a09
Some checks failed
debian / release-debian (push) Failing after 3m37s
debian-11 / debian-11 (push) Failing after 10m9s
debian-13 / debian-13 (push) Failing after 48m23s
debian-12 / debian-12 (push) Failing after 48m24s
debian-10 / debian-10 (push) Failing after 48m37s
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-09-17 16:37:27 -04:00

18 lines
446 B
Plaintext

# Files to ignore
# Tell docker to ignore .gitkeep
.gitkeep
# Tell docker to ignore .gitignore
.gitignore
# Tell docker to ignore node_modules/**
node_modules/**
# Tell docker to ignore .node_modules/**
.node_modules/**
# Tell docker to ignore **/.gitkeep
**/.gitkeep
# Tell docker to ignore **/.gitignore
**/.gitignore
# Tell docker to ignore **/node_modules/**
**/node_modules/**
# Tell docker to ignore **/.node_modules/**
**/.node_modules/**