-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy path.dockerignore
33 lines (26 loc) · 1.33 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
#*******************************************************************************
#.dockerignore
#*******************************************************************************
#Purpose:
#The Docker program is informed here to ignore the following files while sending
#files to the Docker daemon as the build context. Ignoring files helps decrease
#time for build, pull and push of images; and runtime size for containers.
#Author:
#Cedric H. David, 2018-2020
#*******************************************************************************
#List of files that Docker will ignore
#*******************************************************************************
#-------------------------------------------------------------------------------
#The input and output files stored in the sub-directories of input/ and output/
#-------------------------------------------------------------------------------
input/
output/
#-------------------------------------------------------------------------------
#The files potentially added to the tst/ directory, except for some key files
#-------------------------------------------------------------------------------
tst/*
!tst/tst_pub*
!tst/tst_cmp*
#*******************************************************************************
#End
#*******************************************************************************