File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed
examples/MicroserviceExample
OpenTelemetry.Exporter.OpenTelemetryProtocol.Tests/IntegrationTest
OpenTelemetry.Instrumentation.W3cTraceContext.Tests Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 11ARG SDK_VERSION=9.0
2- FROM mcr.microsoft.com/dotnet/sdk:8.0.415 @sha256:4632e98dc703311ca09d0c37170fe70ad4ba334bd88a841c78cbcc9d29994b2c AS dotnet-sdk-8.0
3- FROM mcr.microsoft.com/dotnet/sdk:9.0.306 @sha256:81f6d622fe21ed9d31375167f62a3538ff4d6835f9d5e6da9c2defa8a84b7687 AS dotnet-sdk-9.0
2+ FROM mcr.microsoft.com/dotnet/sdk:8.0.416 @sha256:a87db299d259cec53210df406cd5e51f900a0c6d938fe56d5f392629c0505d75 AS dotnet-sdk-8.0
3+ FROM mcr.microsoft.com/dotnet/sdk:9.0.307 @sha256:1ea5b7f2154cbd1e20a336cb56957dba30a7ce30ef5c1c032a37c42801594713 AS dotnet-sdk-9.0
44FROM mcr.microsoft.com/dotnet/sdk:10.0.100-rc.2@sha256:ed46c853a4f100ba7aab2394e9fb9f9b8989e93346b04632dbce11e5da7623d8 AS dotnet-sdk-10.0
55
66FROM dotnet-sdk-${SDK_VERSION} AS build
@@ -10,8 +10,8 @@ WORKDIR /app
1010COPY . ./
1111RUN dotnet publish ./examples/MicroserviceExample/WebApi -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /out -p:IntegrationBuild=true
1212
13- FROM mcr.microsoft.com/dotnet/aspnet:8.0.21 @sha256:95f47686d234619398df242962148324129b4400aa185986fd571da4e20e24bc AS dotnet-aspnet-8.0
14- FROM mcr.microsoft.com/dotnet/aspnet:9.0.10 @sha256:3dcb33395722d14c80d19107158293ed677b2c07841100d51df07275ae2b2682 AS dotnet-aspnet-9.0
13+ FROM mcr.microsoft.com/dotnet/aspnet:8.0.22 @sha256:e9684fdc74056bda84e8f5918c7211cac837a979a26b8a56c4e424f1ab94c80b AS dotnet-aspnet-8.0
14+ FROM mcr.microsoft.com/dotnet/aspnet:9.0.11 @sha256:1b8d328201297fd5ca40dc1a0788aa9e813f58279c3410fe82dce6744c36d03f AS dotnet-aspnet-9.0
1515FROM mcr.microsoft.com/dotnet/aspnet:10.0.0-rc.2@sha256:5b201bc57156a9f70d58a86112dc7a8217cf3a885740a8fe914b0782ee09647e AS dotnet-aspnet-10.0
1616
1717FROM dotnet-aspnet-${SDK_VERSION} AS runtime
Original file line number Diff line number Diff line change 11ARG SDK_VERSION=10.0
22
3- FROM mcr.microsoft.com/dotnet/sdk:8.0.415 @sha256:4632e98dc703311ca09d0c37170fe70ad4ba334bd88a841c78cbcc9d29994b2c AS dotnet-sdk-8.0
4- FROM mcr.microsoft.com/dotnet/sdk:9.0.306 @sha256:81f6d622fe21ed9d31375167f62a3538ff4d6835f9d5e6da9c2defa8a84b7687 AS dotnet-sdk-9.0
3+ FROM mcr.microsoft.com/dotnet/sdk:8.0.416 @sha256:a87db299d259cec53210df406cd5e51f900a0c6d938fe56d5f392629c0505d75 AS dotnet-sdk-8.0
4+ FROM mcr.microsoft.com/dotnet/sdk:9.0.307 @sha256:1ea5b7f2154cbd1e20a336cb56957dba30a7ce30ef5c1c032a37c42801594713 AS dotnet-sdk-9.0
55FROM mcr.microsoft.com/dotnet/sdk:10.0.100-rc.2@sha256:ed46c853a4f100ba7aab2394e9fb9f9b8989e93346b04632dbce11e5da7623d8 AS dotnet-sdk-10.0
66
77FROM dotnet-sdk-${SDK_VERSION} AS build
@@ -11,8 +11,8 @@ WORKDIR /app
1111COPY . ./
1212RUN dotnet publish ./examples/MicroserviceExample/WorkerService -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /out -p:IntegrationBuild=true
1313
14- FROM mcr.microsoft.com/dotnet/aspnet:8.0.21 @sha256:95f47686d234619398df242962148324129b4400aa185986fd571da4e20e24bc AS dotnet-aspnet-8.0
15- FROM mcr.microsoft.com/dotnet/aspnet:9.0.10 @sha256:3dcb33395722d14c80d19107158293ed677b2c07841100d51df07275ae2b2682 AS dotnet-aspnet-9.0
14+ FROM mcr.microsoft.com/dotnet/aspnet:8.0.22 @sha256:e9684fdc74056bda84e8f5918c7211cac837a979a26b8a56c4e424f1ab94c80b AS dotnet-aspnet-8.0
15+ FROM mcr.microsoft.com/dotnet/aspnet:9.0.11 @sha256:1b8d328201297fd5ca40dc1a0788aa9e813f58279c3410fe82dce6744c36d03f AS dotnet-aspnet-9.0
1616FROM mcr.microsoft.com/dotnet/aspnet:10.0.0-rc.2@sha256:5b201bc57156a9f70d58a86112dc7a8217cf3a885740a8fe914b0782ee09647e AS dotnet-aspnet-10.0
1717
1818FROM dotnet-aspnet-${SDK_VERSION} AS runtime
Original file line number Diff line number Diff line change 44
55ARG BUILD_SDK_VERSION=10.0
66ARG TEST_SDK_VERSION=10.0
7- FROM mcr.microsoft.com/dotnet/sdk:8.0.415 @sha256:4632e98dc703311ca09d0c37170fe70ad4ba334bd88a841c78cbcc9d29994b2c AS dotnet-sdk-8.0
8- FROM mcr.microsoft.com/dotnet/sdk:9.0.306 @sha256:81f6d622fe21ed9d31375167f62a3538ff4d6835f9d5e6da9c2defa8a84b7687 AS dotnet-sdk-9.0
7+ FROM mcr.microsoft.com/dotnet/sdk:8.0.416 @sha256:a87db299d259cec53210df406cd5e51f900a0c6d938fe56d5f392629c0505d75 AS dotnet-sdk-8.0
8+ FROM mcr.microsoft.com/dotnet/sdk:9.0.307 @sha256:1ea5b7f2154cbd1e20a336cb56957dba30a7ce30ef5c1c032a37c42801594713 AS dotnet-sdk-9.0
99FROM mcr.microsoft.com/dotnet/sdk:10.0.100-rc.2@sha256:ed46c853a4f100ba7aab2394e9fb9f9b8989e93346b04632dbce11e5da7623d8 AS dotnet-sdk-10.0
1010
1111FROM dotnet-sdk-${BUILD_SDK_VERSION} AS build
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ WORKDIR /w3c
1111RUN apt-get update && apt-get install -y git
1212RUN git clone --branch level-1 https://github.com/w3c/trace-context.git
1313
14- FROM mcr.microsoft.com/dotnet/sdk:8.0.415 @sha256:4632e98dc703311ca09d0c37170fe70ad4ba334bd88a841c78cbcc9d29994b2c AS dotnet-sdk-8.0
15- FROM mcr.microsoft.com/dotnet/sdk:9.0.306 @sha256:81f6d622fe21ed9d31375167f62a3538ff4d6835f9d5e6da9c2defa8a84b7687 AS dotnet-sdk-9.0
14+ FROM mcr.microsoft.com/dotnet/sdk:8.0.416 @sha256:a87db299d259cec53210df406cd5e51f900a0c6d938fe56d5f392629c0505d75 AS dotnet-sdk-8.0
15+ FROM mcr.microsoft.com/dotnet/sdk:9.0.307 @sha256:1ea5b7f2154cbd1e20a336cb56957dba30a7ce30ef5c1c032a37c42801594713 AS dotnet-sdk-9.0
1616FROM mcr.microsoft.com/dotnet/sdk:10.0.100-rc.2@sha256:ed46c853a4f100ba7aab2394e9fb9f9b8989e93346b04632dbce11e5da7623d8 AS dotnet-sdk-10.0
1717
1818FROM dotnet-sdk-${BUILD_SDK_VERSION} AS build
You can’t perform that action at this time.
0 commit comments