2026-04-28 16:52:55 +02:00
|
|
|
# BellSoft Liberica JRE 21 on Alpaquita Linux (glibc, minimal, 199 MB).
|
|
|
|
|
# Pin by digest in production overlays.
|
|
|
|
|
FROM bellsoft/liberica-runtime-container:jre-21-slim-glibc
|
2026-04-28 09:32:49 +02:00
|
|
|
|
2026-04-04 18:04:42 +02:00
|
|
|
WORKDIR /app
|
|
|
|
|
|
2026-04-28 09:32:49 +02:00
|
|
|
# Agent + log appender are baked in; tenant JAR is delivered at deploy
|
|
|
|
|
# time by cameleer-runtime-loader into the RO-mounted /app/jars volume.
|
2026-04-04 18:04:42 +02:00
|
|
|
COPY agent.jar /app/agent.jar
|
2026-04-15 15:28:44 +02:00
|
|
|
COPY cameleer-log-appender.jar /app/cameleer-log-appender.jar
|
2026-04-04 18:04:42 +02:00
|
|
|
|
2026-04-28 09:32:49 +02:00
|
|
|
# No ENTRYPOINT here. cameleer-server's DeploymentExecutor builds the
|
|
|
|
|
# per-runtime-type entrypoint (spring-boot/quarkus: -jar; plain-java:
|
|
|
|
|
# -cp + main; native: exec) and overrides via withCmd("sh","-c",...).
|
|
|
|
|
# Setting one here only creates drift between this image and the actual
|
|
|
|
|
# runtime command.
|
2026-04-28 16:52:55 +02:00
|
|
|
USER nobody
|