-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
80 lines (73 loc) · 2.57 KB
/
Copy path.dockerignore
File metadata and controls
80 lines (73 loc) · 2.57 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
# ---------------------------------------------------------------------------
# Local environment & secrets — must never enter the build context.
# .env holds the real DATABASE_URL (with password); .env.example is just a
# template but is not a build input either.
# ---------------------------------------------------------------------------
.env
.env.*
# ---------------------------------------------------------------------------
# Build outputs & dependency caches — regenerated inside the container.
# ---------------------------------------------------------------------------
target/
dist/
.dioxus/
static/
node_modules/
libs/node_modules/
libs/*/node_modules/
# Generated assets under public/ are rebuilt by the Dockerfile
# (build-libs → highlight-css → tailwindcss → dx build). Keep the source
# runtime assets (favicon.ico, icons/, images/) but drop generated ones.
public/style.css
public/highlight.css
public/tiptap/
public/codemirror/
public/lightbox/
public/yggdrasil-core/
public/xterm/
public/doc/
# ---------------------------------------------------------------------------
# Runtime data — created at startup, not part of the image build.
# ---------------------------------------------------------------------------
uploads/*
!uploads/.gitkeep
backups/
# ---------------------------------------------------------------------------
# Machine-local / unrelated directories — not build inputs.
# others/ — vendored reference blog (DansBlog)
# .freebsd-sysroot/ — FreeBSD cross-compile sysroot (local-only)
# docker/ — runner image sources, built separately
# docs/ tests/ scripts/ — docs & standalone scripts, not compiled in
# ---------------------------------------------------------------------------
others/
.freebsd-sysroot/
docker/
docs/
tests/
scripts/
# ---------------------------------------------------------------------------
# Agent / IDE / CI tooling — never needed by the build.
# ---------------------------------------------------------------------------
.zcode/
.superpowers/
.agents/
.gitea/
.claude/
.vscode/
.idea/
*.swp
.DS_Store
rust-analyzer.toml
# ---------------------------------------------------------------------------
# Docker files themselves are not needed in the build context.
# ---------------------------------------------------------------------------
Dockerfile
.dockerignore
compose*.yaml
compose*.yml
# ---------------------------------------------------------------------------
# Misc local artifacts.
# ---------------------------------------------------------------------------
.git/
.worktrees/
profile.json.gz