From 6c7ac4d4b9ff4cfb64d9c8d92b8a5193ce2989de Mon Sep 17 00:00:00 2001 From: Steve Gordon Date: Tue, 2 Apr 2024 11:14:51 +0100 Subject: [PATCH] Replace fixed version with placeholder in setup docs --- docs/setup-auto-instrumentation.asciidoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/setup-auto-instrumentation.asciidoc b/docs/setup-auto-instrumentation.asciidoc index 5a3fcbc27..ca5e49b77 100644 --- a/docs/setup-auto-instrumentation.asciidoc +++ b/docs/setup-auto-instrumentation.asciidoc @@ -134,7 +134,7 @@ can be used as part of a https://docs.docker.com/develop/develop-images/multista [source,sh] ---- -ARG AGENT_VERSION=1.19.0 +ARG AGENT_VERSION= <1> FROM alpine:latest AS build ARG AGENT_VERSION @@ -147,6 +147,7 @@ RUN apk update && apk add zip curl RUN curl -L -o elastic_apm_profiler_${AGENT_VERSION}.zip https://github.com/elastic/apm-agent-dotnet/releases/download/v${AGENT_VERSION}/elastic_apm_profiler_${AGENT_VERSION}.zip && \ unzip elastic_apm_profiler_${AGENT_VERSION}.zip -d /elastic_apm_profiler_${AGENT_VERSION} ---- +<1> Replace `` with the newest release version number for the profiler zip file to be downloaded (e.g. ARG AGENT_VERSION=1.26.0). The files can then be copied into a subsequent stage