forked from ls1intum/Artemis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dockerignore
39 lines (36 loc) · 914 Bytes
/
.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
# https://docs.docker.com/engine/reference/builder/#dockerignore-file
classes/
generated-sources/
generated-test-sources/
h2db/
maven-archiver/
maven-status/
reports/
surefire-reports/
test-classes/
test-results/
www/
!*.jar
!*.war
# exclude hidden directories like .idea, .gradle, .cache, .github
.*
# do not exclude .git as it's necessary to insert the commit id into the build
!.git
# do not exclude .eslint files as they are required in the build process
!.eslintignore
!.eslintrc
# do not exclude .npmrc as it's required in the build process for setting the correct node options
!.npmrc
# exclude node_modules if installed locally
node_modules
# exclude build binaries except a pre-built .war file
build/*
!build/libs/*.war
# exclude the docker files and the /docker/.docker-data folders
docker/
# files inside of the root directory not needed
CITATION.cff
CODE_OF_CONDUCT.md
LICENSE
README.md
SECURITY.md