Skip to content

Commit 1504190

Browse files
committed
Update to .NET 10 SDK in Dockerfile and README
Switched base image in Dockerfile to .NET 10.0 SDK and updated README prerequisites to require .NET 10 SDK instead of .NET 9. This ensures consistency across build and documentation. #51
1 parent e433e55 commit 1504190

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ EXPOSE 7236
1919
# Switch to the non-root user
2020
USER $APP_UID
2121

22-
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
22+
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
2323
ARG BUILD_CONFIGURATION=Release
2424
WORKDIR /src
2525
COPY ["src/FlowSynx.Pluginregistry/FlowSynx.Pluginregistry.csproj", "src/FlowSynx.Pluginregistry/"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Whether you are building custom extensions or integrating third-party solutions,
2727
## Getting Started
2828

2929
### Prerequisites
30-
- [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0)
30+
- [.NET 10 SDK](https://dotnet.microsoft.com/download/dotnet/10.0)
3131
- Git
3232

3333
### Installation

0 commit comments

Comments
 (0)