Files
code/.dockerignore
T

18 lines
446 B
Plaintext
Raw Normal View History

2022-10-17 10:13:45 -04:00
# Files to ignore
2023-03-16 19:24:00 -04:00
# Tell docker to ignore .gitkeep
2022-10-17 10:13:45 -04:00
.gitkeep
2023-03-16 19:24:00 -04:00
# Tell docker to ignore .gitignore
2022-10-17 10:13:45 -04:00
.gitignore
2023-03-16 19:24:00 -04:00
# Tell docker to ignore node_modules/**
node_modules/**
# Tell docker to ignore .node_modules/**
2022-10-17 10:13:45 -04:00
.node_modules/**
2023-03-16 19:24:00 -04:00
# 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/**