Skip to content

Commit 8436485

Browse files
committed
Add initial dockerignore file based on latest .gitignore file
CMK-21391 Change-Id: I807da514f67ce92c687479b7d3d37ef89f4e45e3
1 parent cd2412f commit 8436485

File tree

1 file changed

+114
-0
lines changed

1 file changed

+114
-0
lines changed

.dockerignore

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
# Git it is mounted if necessary but not included in images
2+
.git
3+
4+
# copy of repo root .gitignore
5+
.*.swo
6+
.*.swp
7+
.bugs/.last
8+
.bugs/.my_ids
9+
.cache
10+
.cargo
11+
.coverage
12+
.coverage.*
13+
.directory
14+
.DS_Store
15+
.idea/
16+
.metadata
17+
.mypy_cache
18+
.mypy_cache/
19+
.python-*-stamp
20+
.cargo
21+
.ropeproject
22+
.hypothesis
23+
.syntastic
24+
.testmondata
25+
.venv.lock
26+
/.venv/
27+
/container_shadow_workspace*/
28+
/shared_cargo_folder/
29+
*.cookie
30+
*.gcno
31+
*.gcov
32+
*.iml
33+
*.py.*.py
34+
*.pyc
35+
*_pb2.py
36+
*_pb2.pyi
37+
*.pb.cc
38+
*.pb.h
39+
*.timer
40+
**/launch.json
41+
*~
42+
*kate-swp
43+
/.tmp*
44+
/*.wpr
45+
/*.wpu
46+
/announce*
47+
artefacts/
48+
build/
49+
ChangeLog
50+
check_mk-*.tar.gz
51+
check-mk-*.build
52+
check-mk-*.dsc
53+
check-mk-*.tar.gz
54+
check-mk-*_amd64.deb
55+
clang-analyzer/
56+
cmc-*.tar.gz
57+
cme-*.tar.gz
58+
agents/linux/*
59+
agents/windows/*
60+
doc/plugin-api/build/
61+
doc/plugin-api/source/apidoc/
62+
doc/documentation/*.png
63+
doc/documentation/*.cmapx
64+
docker-build.log
65+
version_txt_from_previous_run
66+
GPATH
67+
GRTAGS
68+
GTAGS
69+
htmlcov/
70+
logback.log
71+
mk-livestatus-*.tar.gz
72+
node_modules/
73+
omd/bazel-*
74+
omd/pkgs_by_bzl/
75+
bazel_execution_log*.json
76+
pip-mirror-tmp
77+
RemoteSystemsTempFiles
78+
requirements-no-dev.txt
79+
tags
80+
tests/web/data/*
81+
tests/var/*
82+
tests/results/*
83+
tests/.hypothesis/
84+
/results
85+
/buildscripts/docker_image_aliases/docker-image-alias-resolve-error.txt
86+
/bazel-*
87+
/bazel_log*
88+
bazel-memory.profile
89+
user.bazelrc
90+
remote.bazelrc
91+
92+
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode
93+
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode
94+
95+
# Used by pyenv
96+
.python-version
97+
98+
### VisualStudioCode ###
99+
.vscode/*
100+
*.code-workspace
101+
102+
# Local History for Visual Studio Code
103+
.history/
104+
105+
### VisualStudioCode Patch ###
106+
# Ignore all local history of files
107+
.history
108+
.ionide
109+
110+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode
111+
112+
# gui-e2e tests: playwright specific ignores
113+
test-results/
114+
/*.png

0 commit comments

Comments
 (0)