-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.dockerignore
55 lines (44 loc) · 996 Bytes
/
.dockerignore
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
# Ignore node_modules directory to avoid copying it during the build
node_modules/
consumer-server/node_modules/
# Ignore any logs or temp files
*.log
*.tmp
tmp/
# Ignore any test-related files or directories
test/
tests/
__tests__/
*.spec.js
*.test.js
# Ignore environment and config files that should not be in the Docker image
.env
.env.local
.env.test
.env.production
# Ignore local development files
.vscode/
*.swp
.DS_Store
# Ignore any build or dist directories (will be created during the build process)
dist/
build/
# Ignore Unity-specific cache and temporary files
/root/.cache/
root/.local/share/unity3d/
# Ignore the Dockerfile itself and docker-compose files if they exist
Dockerfile
docker-compose.yml
docker-compose.override.yml
# Ignore any README or documentation files
README.md
*.md
# Ignore Git-related files
.git/
.gitignore
.gitattributes
.gitmodules
# Ignore DevContainer configuration files
.devcontainer/
# Ignore GitHub Actions workflows and configs
.github/