php/.dockerignore
casjay 838729d4c3
All checks were successful
release-tag / release-image (push) Successful in 2h57m17s
🦈🏠🐜 Initial Commit 🐜🦈🏠
2024-10-09 10:53:02 -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/**