-
-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy path.dockerignore
More file actions
73 lines (65 loc) · 851 Bytes
/
.dockerignore
File metadata and controls
73 lines (65 loc) · 851 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# VCS
.git
.github
.github/*
!.github/plugin/
!.github/plugin/**
.gitignore
# Python artifacts
__pycache__
*.pyc
*.pyo
*.egg-info
dist/
build/
# Dev/test tooling
.pytest_cache
.coverage
.mypy_cache
.ruff_cache
.pre-commit-config.yaml
.venv
venv
# Tests & docs (not needed in image)
tests/
docs/
mkdocs.yml
CHANGELOG.md
LICENSE
NOTICE
# JS/TS artifacts (dashboard, SDK — not part of proxy image)
apps/
sdk/
!sdk/
!sdk/typescript/
!sdk/typescript/**
plugins/
!plugins/
!plugins/openclaw/
!plugins/openclaw/**
!plugins/headroom-agent-hooks/
!plugins/headroom-agent-hooks/**
node_modules/
*.tgz
# Secrets & local config
.env
.env.*
*.log
# IDE
.vscode
.idea
*.swp
# Docker
Dockerfile
docker-compose*.yml
.dockerignore
# Misc
.pi-lens/
.superpowers/
examples/
node-compile-cache/
!e2e/
!e2e/init/
!e2e/init/**
!.claude-plugin/
!.claude-plugin/**