-
Notifications
You must be signed in to change notification settings - Fork 235
Expand file tree
/
Copy path.dockerignore
More file actions
40 lines (32 loc) · 751 Bytes
/
Copy path.dockerignore
File metadata and controls
40 lines (32 loc) · 751 Bytes
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
**/.git
**/.idea
**/.mvn
!.mvn/
!.mvn/**
**/*.iml
**/*logs
**/.vs
**/.vscode
**/.settings
**/.project
**/*.iws
**/*.ipr
**/*.md
# Container/build metadata is parsed by the build engine or used on the host,
# but Maven does not need it inside the builder stage. Keep it out of `COPY . .`
# so documentation or compose-only edits do not invalidate the Maven layer.
Dockerfile
.dockerignore
Makefile
dc3/docker-compose*.yml
.github
# Maven build outputs — must be excluded so the builder stage starts from
# clean sources and host-side jars never leak into the image.
**/target
**/dependency-reduced-pom.xml
# Frontend artifacts (if any module ever bundles a UI)
**/node_modules
**/dist
# Local docker-compose / dev artifacts
dc3/data
dc3/logs