-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.dockerignore
More file actions
44 lines (35 loc) · 790 Bytes
/
Copy path.dockerignore
File metadata and controls
44 lines (35 loc) · 790 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
# Data folders
data/
backups/
# Frontend build outputs (built separately)
apps/web/dist/
apps/admin/dist/
# Every node_modules, at any depth.
#
# The per-app entries used to be enough: images built from apps/web or
# apps/admin, and their contexts held one node_modules each. The workspace
# moved the build context to the repository root, and `nodeLinker: hoisted`
# puts the whole dependency tree in the ROOT node_modules — which the deploy
# installs before it builds images. CI cannot catch this: its docker job never
# runs an install, so the directory is not there to be sent.
**/node_modules/
# Git
.git/
.gitignore
# IDE
.idea/
.vscode/
*.swp
# OS
.DS_Store
Thumbs.db
# Docs
docs/
*.md
# Tests (not needed in Docker build)
tests/
# Logs
*.log
# Local env
.env
.env.local