Skip to content

Commit fe28b8b

Browse files
committed
added docker ignore
1 parent ea2c83f commit fe28b8b

1 file changed

Lines changed: 74 additions & 0 deletions

File tree

packages/server/.dockerignore

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Dependencies
2+
node_modules
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
7+
# Build outputs
8+
dist
9+
build
10+
11+
# Environment files
12+
.env
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
# IDE and editor files
19+
.vscode
20+
.idea
21+
*.swp
22+
*.swo
23+
*~
24+
25+
# OS generated files
26+
.DS_Store
27+
.DS_Store?
28+
._*
29+
.Spotlight-V100
30+
.Trashes
31+
ehthumbs.db
32+
Thumbs.db
33+
34+
# Git
35+
.git
36+
.gitignore
37+
38+
# Docker
39+
Dockerfile
40+
.dockerignore
41+
42+
# Logs
43+
logs
44+
*.log
45+
46+
# Runtime data
47+
pids
48+
*.pid
49+
*.seed
50+
*.pid.lock
51+
52+
# Coverage directory used by tools like istanbul
53+
coverage
54+
55+
# nyc test coverage
56+
.nyc_output
57+
58+
# Dependency directories
59+
jspm_packages/
60+
61+
# Optional npm cache directory
62+
.npm
63+
64+
# Optional REPL history
65+
.node_repl_history
66+
67+
# Output of 'npm pack'
68+
*.tgz
69+
70+
# Yarn Integrity file
71+
.yarn-integrity
72+
73+
# dotenv environment variables file
74+
.env

0 commit comments

Comments
 (0)