Skip to content

Commit 6d8936f

Browse files
committed
Flip dockerfiles and readme
1 parent fcd9927 commit 6d8936f

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

src/ServiceControl.Audit/Container-README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The latest release within a minor version will be tagged with `{major}.{minor}`
4646

4747
## Image architecture
4848

49-
This image is a multi-arch image based on the [`mcr.microsoft.com/dotnet/aspnet:8.0-jammy-chiseled-composite-extra`](https://mcr.microsoft.com/en-us/product/dotnet/aspnet/about) base image supporting `linux/arm64` and `linux/amd64`.
49+
This image is a multi-arch image based on the [`mcr.microsoft.com/dotnet/aspnet:10.0-noble-chiseled-composite-extra`](https://mcr.microsoft.com/en-us/product/dotnet/aspnet/about) base image supporting `linux/arm64` and `linux/amd64`.
5050

5151
## Authors
5252

src/ServiceControl.Audit/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build image
2-
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0 AS build
2+
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:10.0 AS build
33
ARG TARGETARCH
44
WORKDIR /
55
ENV CI=true
@@ -9,7 +9,7 @@ RUN dotnet build src/ServiceControl.Audit/ServiceControl.Audit.csproj --configur
99
RUN dotnet publish src/HealthCheckApp/HealthCheckApp.csproj --arch $TARGETARCH --output /healthcheck
1010

1111
# Runtime image
12-
FROM mcr.microsoft.com/dotnet/aspnet:8.0-jammy-chiseled-composite-extra
12+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble-chiseled-composite-extra
1313
WORKDIR /app
1414

1515
EXPOSE 44444

src/ServiceControl.Monitoring/Container-README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The latest release within a minor version will be tagged with `{major}.{minor}`
4545

4646
## Image architecture
4747

48-
This image is a multi-arch image based on the [`mcr.microsoft.com/dotnet/aspnet:8.0-jammy-chiseled-composite-extra`](https://mcr.microsoft.com/en-us/product/dotnet/aspnet/about) base image supporting `linux/arm64` and `linux/amd64`.
48+
This image is a multi-arch image based on the [`mcr.microsoft.com/dotnet/aspnet:10.0-noble-chiseled-composite-extra`](https://mcr.microsoft.com/en-us/product/dotnet/aspnet/about) base image supporting `linux/arm64` and `linux/amd64`.
4949

5050
## Authors
5151

src/ServiceControl.Monitoring/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build image
2-
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0 AS build
2+
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:10.0 AS build
33
ARG TARGETARCH
44
WORKDIR /
55
ENV CI=true
@@ -9,7 +9,7 @@ RUN dotnet build src/ServiceControl.Monitoring/ServiceControl.Monitoring.csproj
99
RUN dotnet publish src/HealthCheckApp/HealthCheckApp.csproj --arch $TARGETARCH --output /healthcheck
1010

1111
# Runtime image
12-
FROM mcr.microsoft.com/dotnet/aspnet:8.0-jammy-chiseled-composite-extra
12+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble-chiseled-composite-extra
1313
WORKDIR /app
1414

1515
EXPOSE 33633

src/ServiceControl/Container-README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The latest release within a minor version will be tagged with `{major}.{minor}`
4747

4848
## Image architecture
4949

50-
This image is a multi-arch image based on the [`mcr.microsoft.com/dotnet/aspnet:8.0-jammy-chiseled-composite-extra`](https://mcr.microsoft.com/en-us/product/dotnet/aspnet/about) base image supporting `linux/arm64` and `linux/amd64`.
50+
This image is a multi-arch image based on the [`mcr.microsoft.com/dotnet/aspnet:10.0-noble-chiseled-composite-extra`](https://mcr.microsoft.com/en-us/product/dotnet/aspnet/about) base image supporting `linux/arm64` and `linux/amd64`.
5151

5252
## Authors
5353

src/ServiceControl/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build image
2-
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0 AS build
2+
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:10.0 AS build
33
ARG TARGETARCH
44
WORKDIR /
55
ENV CI=true
@@ -9,7 +9,7 @@ RUN dotnet build src/ServiceControl/ServiceControl.csproj --configuration Releas
99
RUN dotnet publish src/HealthCheckApp/HealthCheckApp.csproj --arch $TARGETARCH --output /healthcheck
1010

1111
# Runtime image
12-
FROM mcr.microsoft.com/dotnet/aspnet:8.0-jammy-chiseled-composite-extra
12+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble-chiseled-composite-extra
1313
WORKDIR /app
1414

1515
EXPOSE 33333

0 commit comments

Comments
 (0)