-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
50 lines (40 loc) · 945 Bytes
/
Copy path.dockerignore
File metadata and controls
50 lines (40 loc) · 945 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
# Build context is the repo root (see `packages/backend/docker-compose.yml`).
# Keep the layer that copies workspace sources small and deterministic.
# Dependency installs — always reinstalled inside the image.
**/node_modules
# Build outputs — regenerated inside the image.
**/dist
**/.vite
# VCS / tooling.
.git
.gitignore
**/.DS_Store
# Editor / scratch areas.
.idea
.vscode
**/.idea
**/.vscode
# Local env and logs.
**/.env
**/.env.*
!**/.env.example
**/*.log
**/npm-debug.log*
**/pnpm-debug.log*
# Test + CI caches.
**/coverage
**/.nyc_output
**/.eslintcache
**/.turbo
**/.cache
# Docker itself.
**/Dockerfile
**/docker-compose.yml
**/docker-compose.*.yml
**/.dockerignore
# Deploy tooling — not needed inside the runtime image.
scripts/deploy.sh
# Local uploads directory — bind-mounted at runtime instead.
packages/backend/uploads
# Yahoo quote disk cache — re-populated at runtime.
packages/backend/.yahoo-cache.json