Skip to content

Commit d3ff5a5

Browse files
authored
Make .dockerignore node-specific
Add to dockerignore some node-specific things (like node_modules).
1 parent b18cc6b commit d3ff5a5

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

.dockerignore

+50
Original file line numberDiff line numberDiff line change
@@ -1 +1,51 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# node-waf configuration
24+
.lock-wscript
25+
26+
# Compiled binary addons (http://nodejs.org/api/addons.html)
27+
build/Release
28+
29+
# Dependency directories
30+
node_modules/
31+
32+
# Typescript v1 declaration files
33+
typings/
34+
35+
# Optional npm cache directory
36+
.npm
37+
38+
# Optional eslint cache
39+
.eslintcache
40+
41+
# Optional REPL history
42+
.node_repl_history
43+
44+
# Output of 'npm pack'
45+
*.tgz
46+
47+
# Yarn Integrity file
48+
.yarn-integrity
49+
50+
# Git
151
.git

0 commit comments

Comments
 (0)