Skip to content

Commit 012661b

Browse files
author
“llt”
committed
Upgrade to .NET version 10.0.3
1 parent 8fc13af commit 012661b

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

frameworks/CSharp/appmpower/appmpower-ado-my.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ COPY src .
88
RUN dotnet publish -c Release -o out /p:AOTEXE=true /p:Database=mysql /p:Driver=ado
99

1010
# Construct the actual image that will run
11-
FROM mcr.microsoft.com/dotnet/aspnet:10.0.1 AS runtime
11+
FROM mcr.microsoft.com/dotnet/aspnet:10.0.3 AS runtime
1212

1313
RUN apt-get update
1414
RUN apt-get install -y unixodbc-dev unixodbc wget curl

frameworks/CSharp/appmpower/appmpower-ado-pg.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN dotnet publish -c Release -o out /p:AOTEXE=true /p:Database=postgresql /p:Dr
99

1010

1111
# Construct the actual image that will run
12-
FROM mcr.microsoft.com/dotnet/aspnet:10.0.1 AS runtime
12+
FROM mcr.microsoft.com/dotnet/aspnet:10.0.3 AS runtime
1313

1414
RUN apt-get update
1515
RUN apt-get install -y unixodbc-dev unixodbc wget curl

frameworks/CSharp/appmpower/appmpower-odbc-my.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ COPY src .
88
RUN dotnet publish -c Release -o out /p:AOTEXE=true /p:Database=mysql /p:Driver=odbc
99

1010
# Construct the actual image that will run
11-
FROM mcr.microsoft.com/dotnet/aspnet:10.0.1 AS runtime
11+
FROM mcr.microsoft.com/dotnet/aspnet:10.0.3 AS runtime
1212

1313
RUN apt-get update
1414
RUN apt-get install -y unixodbc-dev unixodbc wget curl

frameworks/CSharp/appmpower/appmpower-odbc-pg.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY src .
77
RUN dotnet publish -c Release -o out /p:AOTEXE=true /p:Database=postgresql /p:Driver=odbc
88

99
# Construct the actual image that will run
10-
FROM mcr.microsoft.com/dotnet/aspnet:10.0.1 AS runtime
10+
FROM mcr.microsoft.com/dotnet/aspnet:10.0.3 AS runtime
1111

1212
RUN apt-get update
1313
RUN apt-get install -y unixodbc-dev unixodbc odbc-postgresql

frameworks/CSharp/appmpower/src/appMpower.Orm/appMpower.Orm.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777

7878
<ItemGroup>
7979
<!-- ODBC -->
80-
<PackageReference Include="System.Data.Odbc" Version="10.0.1"
80+
<PackageReference Include="System.Data.Odbc" Version="10.0.3"
8181
Condition="'$(Driver)' == 'odbc'" />
8282
<!-- ADO + PostgreSQL -->
8383
<PackageReference Include="Npgsql" Version="10.0.1"

0 commit comments

Comments
 (0)