Add jardata volume, CAMELEER_AUTH_TOKEN/CAMELEER3_SERVER_ENDPOINT/CLICKHOUSE_URL env vars to cameleer-saas, CAMELEER_AUTH_TOKEN to cameleer3-server, runtime-base Dockerfile for agent-instrumented customer apps, and expand CI surefire excludes for new integration test classes. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
773 B
Docker
20 lines
773 B
Docker
FROM eclipse-temurin:21-jre-alpine
|
|
WORKDIR /app
|
|
|
|
# Agent JAR is copied during CI build from Gitea Maven registry
|
|
# ARG AGENT_JAR=cameleer3-agent-1.0-SNAPSHOT-shaded.jar
|
|
COPY agent.jar /app/agent.jar
|
|
|
|
ENTRYPOINT exec java \
|
|
-Dcameleer.export.type=${CAMELEER_EXPORT_TYPE:-HTTP} \
|
|
-Dcameleer.export.endpoint=${CAMELEER_EXPORT_ENDPOINT} \
|
|
-Dcameleer.agent.name=${HOSTNAME} \
|
|
-Dcameleer.agent.application=${CAMELEER_APPLICATION_ID:-default} \
|
|
-Dcameleer.agent.environment=${CAMELEER_ENVIRONMENT_ID:-default} \
|
|
-Dcameleer.routeControl.enabled=${CAMELEER_ROUTE_CONTROL_ENABLED:-false} \
|
|
-Dcameleer.replay.enabled=${CAMELEER_REPLAY_ENABLED:-false} \
|
|
-Dcameleer.health.enabled=true \
|
|
-Dcameleer.health.port=9464 \
|
|
-javaagent:/app/agent.jar \
|
|
-jar /app/app.jar
|