From 666b8d2826bf7d4e0755ad2645fbf2002ef92afe Mon Sep 17 00:00:00 2001 From: manuraf Date: Tue, 5 Mar 2024 09:31:44 +0100 Subject: [PATCH] add applicationinsights agent --- Dockerfile.new | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.new b/Dockerfile.new index 13dc1062..9dfa915d 100644 --- a/Dockerfile.new +++ b/Dockerfile.new @@ -12,7 +12,8 @@ WORKDIR /app COPY --from=builder ./target/*.jar ./app.jar -ADD https://github.com/microsoft/ApplicationInsights-Java/releases/download/3.1.1/applicationinsights-agent-3.1.1.jar /applicationinsights-agent.jar +ADD https://github.com/microsoft/ApplicationInsights-Java/releases/download/3.2.11/applicationinsights-agent-3.2.11.jar ./applicationinsights-agent.jar +RUN chmod 755 ./applicationinsights-agent.jar EXPOSE 8080 USER 1001