forked from openthread/ot-registrar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
44 lines (37 loc) · 888 Bytes
/
Copy path.dockerignore
File metadata and controls
44 lines (37 loc) · 888 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
41
42
43
44
# Keep the Docker build context small and prevent local scratch / stale
# runtime state from leaking into the image. The Dockerfile uses explicit
# COPY lines, so this file is also defence-in-depth against future COPYs.
# VCS / CI / agent / IDE / OS
.git
.gitignore
.gitattributes
.github
.claude
.idea
.vscode
.settings
.DS_Store
*.iml
# Build by-products and crash dumps
*.class
hs_err_pid*
# Runtime artefacts we never want baked into the image
logs
*.log
Californium.properties
Californium3.properties
# Local scratch
temp
# target/ holds Maven build output; only the fat JAR is needed at runtime
target
!target/ot-registrar-*-jar-with-dependencies.jar
# Docs and release notes — not used by the running container
CODE_OF_CONDUCT.md
CONTRIBUTING.md
GUIDE.md
README.md
AUTHORS
releases
# Don't ship the Dockerfile / dockerignore themselves
etc/docker/Dockerfile
.dockerignore