We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f95596e commit 7b9298eCopy full SHA for 7b9298e
autoinstrumentation/dotnet/Dockerfile
@@ -14,7 +14,7 @@
14
# - For auto-instrumentation by container injection, the Linux command cp is
15
# used and must be availabe in the image.
16
17
-FROM busybox
+FROM busybox as downloader
18
19
ARG version
20
@@ -26,4 +26,8 @@ ADD https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/relea
26
RUN unzip opentelemetry-dotnet-instrumentation-linux-glibc.zip &&\
27
unzip opentelemetry-dotnet-instrumentation-linux-musl.zip "linux-musl-x64/*" -d . &&\
28
rm opentelemetry-dotnet-instrumentation-linux-glibc.zip opentelemetry-dotnet-instrumentation-linux-musl.zip &&\
29
- chmod -R go+r .
+ chmod -R go+r .
30
+
31
+FROM busybox
32
33
+COPY --from=downloader /autoinstrumentation /autoinstrumentation
0 commit comments