-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
90 lines (79 loc) · 1.67 KB
/
.dockerignore
File metadata and controls
90 lines (79 loc) · 1.67 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# ===========================
# Frontend .dockerignore
# Context: root (for web app builds)
# ===========================
# ===========================
# Backend (exclude large build artifacts)
# ===========================
apps/api/target/
# ===========================
# Node/Frontend
# ===========================
node_modules
**/node_modules
.pnpm-store
# Build outputs
.next
.turbo
dist
build
out
# Development files
*.log
npm-debug.log*
pnpm-debug.log*
yarn-debug.log*
yarn-error.log*
# Testing
coverage
.nyc_output
# Tauri (exclude source - desktop app, not deployed via Docker)
apps/native/
# Re-include package.json needed by playwright.Dockerfile
!apps/native/package.json
# Re-include Cargo.toml stubs needed by api.Dockerfile: cargo requires all workspace
# members' manifests to be present for workspace resolution, even when only building the API.
# No Tauri source or binary is included - just the manifests.
!apps/native/src-tauri/Cargo.toml
!apps/native/src-tauri/crates/sheets_fs/Cargo.toml
!apps/native/src-tauri/crates/sheets_libsql/Cargo.toml
# ===========================
# IDE & OS
# ===========================
.vscode
.idea
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# ===========================
# Git & VCS
# ===========================
.git
.gitignore
.github/
.gitlab-ci.yml
# ===========================
# Environment & Config
# ===========================
.env
.env*.local
.env.development
.env.example
!.env.example
# ===========================
# Documentation
# ===========================
README.md
docs/
# ===========================
# Docker
# ===========================
docker/
Dockerfile
.dockerignore
docker-compose.yml
compose.yml
compose.dev.yml
compose.prod.yml