-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy path.dockerignore
More file actions
52 lines (42 loc) · 1.02 KB
/
.dockerignore
File metadata and controls
52 lines (42 loc) · 1.02 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
# Exclude VCS and CI metadata
.git
.git/**
.github/
.gitmodules
# OS / editor cruft
.DS_Store
.idea/
.vscode/
*.swp
# Node modules (only present in test helpers)
node_modules/
**/node_modules/
# Tests and large fixtures (not needed for image build)
# TODO: restore this ignore, required for CI for now
#testing/
# Build artifacts and caches (created locally or by scripts)
out/
bin/
dist/
coverage/
*.log
*.tmp
*.cache
*.pprof
# Go vendor cache (not used; modules are downloaded in image)
vendor/
# Local env/virtualenvs
venv/
# Sysbench copied files (from .gitignore)
SysbenchDockerfile
SysbenchDockerfile.dockerignore
sysbench-runner-tests-entrypoint.sh
config.json
integration-tests/
# Datadirs created locally (from .gitignore)
doltgres/
# Extension build outputs
core/extensions/pg_extension/output/
# Keep only what we might need for source builds
# (Go source, scripts, entrypoint, flatbuffers, core, server, utils, etc. remain included by default)
# If you need to further constrain context, switch to an allowlist pattern.