File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed
examples/MicroserviceExample
OpenTelemetry.Exporter.OpenTelemetryProtocol.Tests/IntegrationTest
OpenTelemetry.Instrumentation.W3cTraceContext.Tests Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
ARG SDK_VERSION=9.0
2
- FROM mcr.microsoft.com/dotnet/sdk:8.0.407 @sha256:2d7f935b8c7fe032cd3d36b5ce9c82c24413881e6dad1b4fbdf36cf369e4244f AS dotnet-sdk-8.0
3
- FROM mcr.microsoft.com/dotnet/sdk:9.0.202 @sha256:d7f4691d11f610d9b94bb75517c9e78ac5799447b5b3e82af9e4625d8c8d1d53 AS dotnet-sdk-9.0
2
+ FROM mcr.microsoft.com/dotnet/sdk:8.0.408 @sha256:1875fc5f4be6211c22c4353aafd6b13279c0175f277fbfa53d52375d99e8a9b8 AS dotnet-sdk-8.0
3
+ FROM mcr.microsoft.com/dotnet/sdk:9.0.203 @sha256:9b0a4330cb3dac23ebd6df76ab4211ec5903907ad2c1ccde16a010bf25f8dfde AS dotnet-sdk-9.0
4
4
5
5
FROM dotnet-sdk-${SDK_VERSION} AS build
6
6
ARG PUBLISH_CONFIGURATION=Release
@@ -9,8 +9,8 @@ WORKDIR /app
9
9
COPY . ./
10
10
RUN dotnet publish ./examples/MicroserviceExample/WebApi -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /out -p:IntegrationBuild=true
11
11
12
- FROM mcr.microsoft.com/dotnet/aspnet:8.0.8 @sha256:30d8619d9a4f68508d9b17fc2088e857e629d3f9ceaaf57c22d6747f7326d89e AS dotnet-aspnet-8.0
13
- FROM mcr.microsoft.com/dotnet/aspnet:9.0.3 @sha256:69d0eb9d3182372d0509630cb4996085ccafb3bed75e9adec68604640bf725d3 AS dotnet-aspnet-9.0
12
+ FROM mcr.microsoft.com/dotnet/aspnet:8.0.15 @sha256:ab605d8d1b0886af2ef4bbaf5167fbe237670b6fd9829a05c4d08406afdd985e AS dotnet-aspnet-8.0
13
+ FROM mcr.microsoft.com/dotnet/aspnet:9.0.4 @sha256:c3aee4ea4f51369d1f906b4dbd19b0f74fd34399e5ef59f91b70fcd332f36566 AS dotnet-aspnet-9.0
14
14
15
15
FROM dotnet-aspnet-${SDK_VERSION} AS runtime
16
16
WORKDIR /app
Original file line number Diff line number Diff line change 1
1
ARG SDK_VERSION=9.0
2
2
3
- FROM mcr.microsoft.com/dotnet/sdk:8.0.407 @sha256:2d7f935b8c7fe032cd3d36b5ce9c82c24413881e6dad1b4fbdf36cf369e4244f AS dotnet-sdk-8.0
4
- FROM mcr.microsoft.com/dotnet/sdk:9.0.202 @sha256:d7f4691d11f610d9b94bb75517c9e78ac5799447b5b3e82af9e4625d8c8d1d53 AS dotnet-sdk-9.0
3
+ FROM mcr.microsoft.com/dotnet/sdk:8.0.408 @sha256:1875fc5f4be6211c22c4353aafd6b13279c0175f277fbfa53d52375d99e8a9b8 AS dotnet-sdk-8.0
4
+ FROM mcr.microsoft.com/dotnet/sdk:9.0.203 @sha256:9b0a4330cb3dac23ebd6df76ab4211ec5903907ad2c1ccde16a010bf25f8dfde AS dotnet-sdk-9.0
5
5
6
6
FROM dotnet-sdk-${SDK_VERSION} AS build
7
7
ARG PUBLISH_CONFIGURATION=Release
@@ -10,8 +10,8 @@ WORKDIR /app
10
10
COPY . ./
11
11
RUN dotnet publish ./examples/MicroserviceExample/WorkerService -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /out -p:IntegrationBuild=true
12
12
13
- FROM mcr.microsoft.com/dotnet/aspnet:8.0.8 @sha256:30d8619d9a4f68508d9b17fc2088e857e629d3f9ceaaf57c22d6747f7326d89e AS dotnet-aspnet-8.0
14
- FROM mcr.microsoft.com/dotnet/aspnet:9.0.3 @sha256:69d0eb9d3182372d0509630cb4996085ccafb3bed75e9adec68604640bf725d3 AS dotnet-aspnet-9.0
13
+ FROM mcr.microsoft.com/dotnet/aspnet:8.0.15 @sha256:ab605d8d1b0886af2ef4bbaf5167fbe237670b6fd9829a05c4d08406afdd985e AS dotnet-aspnet-8.0
14
+ FROM mcr.microsoft.com/dotnet/aspnet:9.0.4 @sha256:c3aee4ea4f51369d1f906b4dbd19b0f74fd34399e5ef59f91b70fcd332f36566 AS dotnet-aspnet-9.0
15
15
16
16
FROM dotnet-aspnet-${SDK_VERSION} AS runtime
17
17
WORKDIR /app
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
3
"rollForward" : " latestFeature" ,
4
- "version" : " 9.0.202 "
4
+ "version" : " 9.0.203 "
5
5
}
6
6
}
Original file line number Diff line number Diff line change 4
4
5
5
ARG BUILD_SDK_VERSION=9.0
6
6
ARG TEST_SDK_VERSION=9.0
7
- FROM mcr.microsoft.com/dotnet/sdk:8.0.407 @sha256:2d7f935b8c7fe032cd3d36b5ce9c82c24413881e6dad1b4fbdf36cf369e4244f AS dotnet-sdk-8.0
8
- FROM mcr.microsoft.com/dotnet/sdk:9.0.202 @sha256:d7f4691d11f610d9b94bb75517c9e78ac5799447b5b3e82af9e4625d8c8d1d53 AS dotnet-sdk-9.0
7
+ FROM mcr.microsoft.com/dotnet/sdk:8.0.408 @sha256:1875fc5f4be6211c22c4353aafd6b13279c0175f277fbfa53d52375d99e8a9b8 AS dotnet-sdk-8.0
8
+ FROM mcr.microsoft.com/dotnet/sdk:9.0.203 @sha256:9b0a4330cb3dac23ebd6df76ab4211ec5903907ad2c1ccde16a010bf25f8dfde AS dotnet-sdk-9.0
9
9
10
10
FROM dotnet-sdk-${BUILD_SDK_VERSION} AS build
11
11
ARG PUBLISH_CONFIGURATION=Release
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ WORKDIR /w3c
11
11
RUN apt-get update && apt-get install -y git
12
12
RUN git clone --branch level-1 https://github.com/w3c/trace-context.git
13
13
14
- FROM mcr.microsoft.com/dotnet/sdk:8.0.407 @sha256:2d7f935b8c7fe032cd3d36b5ce9c82c24413881e6dad1b4fbdf36cf369e4244f AS dotnet-sdk-8.0
15
- FROM mcr.microsoft.com/dotnet/sdk:9.0.202 @sha256:d7f4691d11f610d9b94bb75517c9e78ac5799447b5b3e82af9e4625d8c8d1d53 AS dotnet-sdk-9.0
14
+ FROM mcr.microsoft.com/dotnet/sdk:8.0.408 @sha256:1875fc5f4be6211c22c4353aafd6b13279c0175f277fbfa53d52375d99e8a9b8 AS dotnet-sdk-8.0
15
+ FROM mcr.microsoft.com/dotnet/sdk:9.0.203 @sha256:9b0a4330cb3dac23ebd6df76ab4211ec5903907ad2c1ccde16a010bf25f8dfde AS dotnet-sdk-9.0
16
16
17
17
FROM dotnet-sdk-${BUILD_SDK_VERSION} AS build
18
18
ARG PUBLISH_CONFIGURATION=Release
You can’t perform that action at this time.
0 commit comments