Add container image (#89)
This commit is contained in:
parent
c7bae85e40
commit
957713286a
4 changed files with 93 additions and 0 deletions
14
src/main/docker/Dockerfile
Normal file
14
src/main/docker/Dockerfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
FROM busybox:latest
|
||||
|
||||
# https://github.com/opencontainers/image-spec/blob/main/annotations.md
|
||||
LABEL org.opencontainers.image.title ${project.name}
|
||||
LABEL org.opencontainers.image.description ${project.description}
|
||||
LABEL org.opencontainers.image.url ${project.url}
|
||||
LABEL org.opencontainers.image.source ${project.url}/src/main/docker/Dockerfile
|
||||
LABEL org.opencontainers.image.vendor ${project.organization.name}
|
||||
LABEL org.opencontainers.image.authors https://github.com/orgs/kokuwaio/people
|
||||
LABEL org.opencontainers.image.licenses Apache-2.0
|
||||
LABEL org.opencontainers.image.version ${project.version}
|
||||
LABEL org.opencontainers.image.base.name busybox:latest
|
||||
|
||||
COPY ${project.build.finalName}.jar /keycloak-event-metrics.jar
|
Loading…
Add table
Add a link
Reference in a new issue