generated from norlab-ulaval/template-norlab-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
69 lines (58 loc) · 2.34 KB
/
.dockerignore
File metadata and controls
69 lines (58 loc) · 2.34 KB
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
# =================================================================================================
#
# Specify files/directories to be ignored by the Dockerfile COPY/ADD clause
# Note: content from "volumes" will still be accessible inside the container
#
# Syntax:
# "*" match any number of characters
# "?" match one character
# "!" prevent ignore
# "**" match any number of directories
#
# References: https://docs.docker.com/build/building/context/#dockerignore-files
#
# =================================================================================================
# ====Dockerized-NorLab============================================================================
# ....Dev required.................................................................................
!**/.dockerized_norlab/
!**/version.txt
!**/.git
# ....N2ST bats tests required.....................................................................
!/utilities/tmp/dockerized-norlab-project-mock/
!**/artifact/
!**/data/external_data/
!**/data/repository_data/
!**/data/shared_data/
# ....DNA common...................................................................................
**/slurm_jobs/*.out
**/slurm_jobs/out/*.out
# ====General======================================================================================
# ....Repository related...........................................................................
.github
.releaserc.json
CHANGELOG.md
commit_msg_reference.md
visual/
# ....Graphic/image related........................................................................
**/*.svg
**/*.svgz
**/*.drawio
**/drawio/
# ....Text related.................................................................................
**/*.pdf
# ....Python related...............................................................................
**/.pytest_cache
**/.benchmarks
**/__pycache__
**/*.pyc
# ....Jetbrains....................................................................................
/.run/
/.idea/
# ....Jetbrains AI.................................................................................
/.junie/
# ....Log..........................................................................................
**/out/
**/*.out
**/*.log
# ....General......................................................................................
**/.DS_Store