forked from daos-stack/daos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dockerignore
66 lines (59 loc) · 1.12 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
# .dockerignore file for DAOS.
# Firstly deny everything and then allow only directories and files that we're
# interested in. Other files will not be required for the build and they
# just generate noise and extra work for docker.
*
!src
!utils/build.config
!utils/certs
!utils/ci
!utils/completion
!utils/config
!utils/node_local_test.py
!utils/nlt_server.yaml
!utils/setup_daos_server_helper.sh
!utils/sl/setup_local.sh
!utils/scripts
!utils/run_utest.py
!utils/utest.yaml
!utils/unit
!SConstruct
!VERSION
!LICENSE
!ftest.sh
!site_scons
!.clang-format
!requirements-build.txt
!requirements-utest.txt
!requirements-ftest.txt
# Now disallow extra files which may be present but are not required.
# Include the rdb repo as well.
**/.git
# Build and test output, in case tree has been used outside docker
dnt*.xml
daos.conf
build
install
.build_vars.json
.build_vars.sh
config.log
.sconf_temp
.sconsign.dblite
.daos_server.active.yml
autodocs
venv
# Test log files.
dnt*
nlt*
# Any local downloads
**/*.tar.gz
**/*.tgz
**/*.bz2
# Any compiled python code
**/*.pyc
**/__pycache__
# Editor temporary save files.
**/*~
**/*.orig
**/*.rej
**/#*#