File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net8 .0</TargetFramework >
5
5
<TypeScriptToolsVersion >latest</TypeScriptToolsVersion >
6
6
<TypeScriptCompileBlocked >true</TypeScriptCompileBlocked >
7
7
<RootNamespace >Apps</RootNamespace >
8
8
</PropertyGroup >
9
9
10
10
<ItemGroup >
11
- <PackageReference Include =" ServiceStack" Version =" 6 .*" />
11
+ <PackageReference Include =" ServiceStack" Version =" 8 .*" />
12
12
</ItemGroup >
13
13
14
14
<ItemGroup >
Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/sdk:6 .0 AS build
1
+ FROM mcr.microsoft.com/dotnet/sdk:8 .0 AS build
2
2
WORKDIR /source
3
3
4
4
COPY . .
5
5
RUN dotnet restore Apps.csproj
6
6
RUN dotnet publish Apps.csproj -c release -o /app --no-restore
7
7
8
- FROM mcr.microsoft.com/dotnet/aspnet:6 .0 AS runtime
8
+ FROM mcr.microsoft.com/dotnet/aspnet:8 .0 AS runtime
9
9
LABEL service="servicestack-apps"
10
10
WORKDIR /app
11
11
COPY --from=build /app ./
You can’t perform that action at this time.
0 commit comments