We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93d7394 commit a96fe1dCopy full SHA for a96fe1d
1 file changed
agent/src/docker/entrypoint.sh
@@ -1,7 +1,11 @@
1
#!/bin/sh
2
+# When /transfer exists (shared volume), copy the agent JAR there and exit.
3
+# This supports the Kubernetes init container pattern where this image provides
4
+# the agent JAR to the application container via a shared volume.
5
if [ -e /transfer ]; then
6
cp -r /agent/teamscale-jacoco-agent.jar /transfer
7
exit 0
8
fi
9
+# Otherwise, keep the container alive indefinitely as a sidecar.
10
trap : TERM INT
11
sleep infinity & wait
0 commit comments