-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.dockerignore
More file actions
64 lines (51 loc) · 810 Bytes
/
Copy path.dockerignore
File metadata and controls
64 lines (51 loc) · 810 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
62
63
64
# Dependencies & build artifacts
node_modules
dist
# Version control
.git
.gitignore
# Tests
tests
# CI / GitHub
.github
# Documentation (not needed at runtime)
*.md
LICENSE
docs
# HA Add-on (separate build context)
ble-scale-sync-addon
repository.yaml
# Auxiliary directories (not needed at runtime)
worker
drivers
firmware
# Docker files (avoid recursive COPY)
Dockerfile
.dockerignore
docker-compose*.yml
# Config & secrets (mounted at runtime)
.env
.env.example
config.yaml
config.yaml.*
# IDE & editor
.idea
.vscode
*.swp
*.swo
# Garmin tokens (mounted at runtime)
.garmin_tokens
.garmin_renpho_tokens
# Python virtual environments
.venv
env
venv
__pycache__
# Lint / format configs (not needed at runtime)
eslint.config.js
.prettierrc
tsconfig.eslint.json
# OS files
.DS_Store
Thumbs.db
nul