Add container image (#89)

This commit is contained in:
Stephan Schnabel 2024-06-24 15:15:47 +02:00
parent c7bae85e40
commit 957713286a
Signed by: stephan.schnabel
GPG key ID: E07AF5BA239FE543
4 changed files with 93 additions and 0 deletions

View 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