forked from srbhr/Resume-Matcher
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
61 lines (50 loc) · 693 Bytes
/
.dockerignore
File metadata and controls
61 lines (50 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Git
.git
.gitignore
# Node
**/node_modules
**/.next
**/out
# Python
**/__pycache__
**/*.pyc
**/*.pyo
**/.pytest_cache
**/.mypy_cache
**/*.egg-info
**/.venv
**/venv
# Environment files (use UI to configure in Docker)
**/.env
**/.env.local
**/.env.*.local
# IDE
.vscode
.idea
*.swp
*.swo
# Documentation (not needed in image)
*.md
!README.md
docs/
# Build artifacts
dist/
build/
# Test files
**/tests/
**/*.test.ts
**/*.test.tsx
**/*.spec.ts
**/*.spec.tsx
# Data directory (mounted as volume)
apps/backend/data/
# OS files
.DS_Store
Thumbs.db
# Docker files themselves
Dockerfile
docker-compose.yml
.dockerignore
# Config file with API keys - NEVER COMMIT
config.json
**/config.json