File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
autoinstrumentation/dotnet Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 14
14
# - For auto-instrumentation by container injection, the Linux command cp is
15
15
# used and must be availabe in the image.
16
16
17
- FROM busybox
17
+ FROM busybox as downloader
18
18
19
19
ARG version
20
20
@@ -26,4 +26,8 @@ ADD https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/relea
26
26
RUN unzip opentelemetry-dotnet-instrumentation-linux-glibc.zip &&\
27
27
unzip opentelemetry-dotnet-instrumentation-linux-musl.zip "linux-musl-x64/*" -d . &&\
28
28
rm opentelemetry-dotnet-instrumentation-linux-glibc.zip opentelemetry-dotnet-instrumentation-linux-musl.zip &&\
29
- chmod -R go+r .
29
+ chmod -R go+r .
30
+
31
+ FROM busybox
32
+
33
+ COPY --from=downloader /autoinstrumentation /autoinstrumentation
You can’t perform that action at this time.
0 commit comments