forked from c-h-david/rapid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dockerignore
47 lines (38 loc) · 1.82 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
#*******************************************************************************
#.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-2024.
#*******************************************************************************
#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 added by users to the run directory except for rapid_script.sh
#-------------------------------------------------------------------------------
run/*
!run/rapid_script.sh
#-------------------------------------------------------------------------------
#The RAPID executable
#-------------------------------------------------------------------------------
src/rapid
#-------------------------------------------------------------------------------
#The files potentially added to the tst directory
#-------------------------------------------------------------------------------
tst/rapid
tst/rapid_namelist
tst/tst_run_comp
tst/tst_run_cerr
tst/tst_run_conv_Qinit
tst/tmp_*
#*******************************************************************************
#End
#*******************************************************************************