mirror of
https://github.com/dockersrc/archlinux
synced 2024-11-20 23:23:04 -05:00
18 lines
446 B
Plaintext
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/**
|