-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy path.dockerignore
More file actions
55 lines (45 loc) · 844 Bytes
/
Copy path.dockerignore
File metadata and controls
55 lines (45 loc) · 844 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
# Keep the build context small — every byte here is uploaded to BuildKit.
# Dependencies and build output (rebuilt inside the container)
node_modules/
dist/
# Dockerfile.prebuilt copies host dist/ — re-include after the rule above
!dist/
# IDE / editor
.idea/
.vscode/
*.swp
*.swo
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Local env files
.env
.env.local
.env.*.local
# Git
.git/
.gitignore
.gitattributes
# Husky / git hooks (not needed at runtime)
.husky/
# Tests and coverage
tests/
coverage/
.nyc_output/
# CI / Docker / build helpers (not consumed by the image)
.github/
.travis.yml
build-docker.ps1
build-docker.sh
Dockerfile
.dockerignore
docker-compose*.yml
# Documentation (keep README.md for image-level metadata if any tooling reads it)
*.md
!README.md
# OS junk
.DS_Store
Thumbs.db