Skip to content

Commit

Permalink
Replace fixed version with placeholder in setup docs
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejgordon committed Apr 2, 2024
1 parent 0faa54d commit 6c7ac4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/setup-auto-instrumentation.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -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=<VERSION> <1>
FROM alpine:latest AS build
ARG AGENT_VERSION
Expand All @@ -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 `<VERSION>` 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

Expand Down

0 comments on commit 6c7ac4d

Please sign in to comment.