-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy path.dockerignore
More file actions
72 lines (59 loc) · 1.16 KB
/
.dockerignore
File metadata and controls
72 lines (59 loc) · 1.16 KB
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
65
66
67
68
69
70
71
72
# Dependencies (exclude ALL node_modules directories)
**/node_modules
node_modules
npm-debug.log
# Build outputs (exclude ALL build directories)
.next
out
build
**/dist
dist
bin
obj
**/bin/
**/obj/
**/build/
# Testing
coverage
.vs
# Misc
.DS_Store
*.pem
# Environment files (will be set via build args or runtime env vars)
.env*.local
.env
.env.development
.env.production
# NPM Configuration (INCLUDE .npmrc for custom registries)
# If you use a custom npm registry, add .npmrc to frontend/ directory
# and it will be copied into Docker builds
# Note: For private registries requiring authentication, use build secrets:
# docker build --secret id=npmrc,src=frontend/.npmrc ...
# DO NOT include .npmrc - it gets copied to support custom registries
# Git
.git
.gitignore
.github
# Docker
Dockerfile
.dockerignore
docker-compose.yml
docker-compose.override.yml
# Dev containers
.devcontainer
# Azure (not needed in container)
.azure
azure.yaml
azure.yaml.json
# Infrastructure (not needed in container)
infra
# Documentation (not needed in container)
README.md
*.md
docs
# IDE and scripts (not needed in container)
.vscode
.idea
scripts
# Hooks (not needed in container)
hooks