-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
.dockerignore
87 lines (75 loc) · 1.83 KB
/
.dockerignore
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
# Exclude files and directories to minimize
# the Docker build context size.
# This practice limits the scope of COPY commands in the Dockerfile.
# When not using multi-layer builds, it can effectively reduce the final image size.
# The first part of this file is should be the same as the .gitignore file
# The second part is the extra not needed content for .dockerignore
########################################################
# first part: .gitignore contents
########################################################
# Global excludes across all subdirectories
**/*.o
**/*.obj
**/*.bc
**/*.so
**/*.so.[0-9]
**/*.so.[0-9].[0-9]
**/*.so.[0-9].[0-9][0-9]
**/*.sl
**/*.sl.[0-9]
**/*.sl.[0-9].[0-9]
**/*.sl.[0-9].[0-9][0-9]
**/*.dylib
**/*.dll
**/*.exp
**/*.a
**/*.mo
**/*.pot
**/objfiles.txt
**/.deps/
**/*.gcno
**/*.gcda
**/*.gcov
**/*.gcov.out
**/lcov*.info
**/coverage/
**/coverage-html-stamp
**/*.vcproj
**/*.vcxproj
**/win32ver.rc
**/*.exe
**/lib*dll.def
**/lib*.pc
# Local excludes in root directory
test/t/__pycache__/
test/__pycache__/
test/log/
log_docker_build/
test/results/
test/tmp_check/
test/tmp_check_iso/
test/output_iso/
include/utils/stopevents_defs.h
include/utils/stopevents_data.h
orioledb.typedefs
ci/antithesis
# Ignore generated scripts
sql/orioledb--1.0.sql
#######################################################
# second part: extra .dockerignore contents
#######################################################
# Exclude version control and continuous integration (CI) directories
.git
.github
# Exclude Dockerfiles
Dockerfile
Dockerfile.ubuntu
# Exclude OrioleDB Docker test definitions and code
# as they are not needed inside the Docker image.
test/
ci/local_docker_matrix.sh
ci/docker_matrix.sh
# Documentation files, which are not needed inside the Docker image.
doc/
# Exclude the PostGIS Docker build directory
docker-postgis