Files
ifconfig/.dockerignore
T

18 lines
446 B
Plaintext
Raw Normal View History

2022-11-14 13:03:16 -05:00
# Files to ignore
2026-05-12 20:06:51 -04:00
# Tell docker to ignore .gitkeep
2022-10-03 10:31:55 -04:00
.gitkeep
2026-05-12 20:06:51 -04:00
# Tell docker to ignore .gitignore
2022-10-03 10:31:55 -04:00
.gitignore
2026-05-12 20:06:51 -04:00
# Tell docker to ignore node_modules/**
2022-11-14 13:03:16 -05:00
node_modules/**
2026-05-12 20:06:51 -04:00
# Tell docker to ignore .node_modules/**
2022-10-03 10:31:55 -04:00
.node_modules/**
2026-05-12 20:06:51 -04:00
# Tell docker to ignore **/.gitkeep
2022-11-14 13:03:16 -05:00
**/.gitkeep
2026-05-12 20:06:51 -04:00
# Tell docker to ignore **/.gitignore
2022-11-14 13:03:16 -05:00
**/.gitignore
2026-05-12 20:06:51 -04:00
# Tell docker to ignore **/node_modules/**
2022-11-14 13:03:16 -05:00
**/node_modules/**
2026-05-12 20:06:51 -04:00
# Tell docker to ignore **/.node_modules/**
2022-11-14 13:03:16 -05:00
**/.node_modules/**