Skip to content

Commit 3ce952c

Browse files
committed
upgrade base docker image
1 parent c9cd7c2 commit 3ce952c

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

CoreHome.Admin/CoreHome.Admin.csproj

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

1111
<ItemGroup>
1212
<PackageReference Include="BuildBundlerMinifier" Version="3.2.449" />
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0-rc.1.23419.6">
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0-preview.3.23174.2">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>

CoreHome.Admin/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:8.0-preview AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:8.0-jammy AS base
22
WORKDIR /app
33
EXPOSE 8080
44

55
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
66

7-
FROM mcr.microsoft.com/dotnet/sdk:8.0-preview AS build
7+
FROM mcr.microsoft.com/dotnet/sdk:8.0-jammy AS build
88
WORKDIR /src
99
COPY ["CoreHome.Admin/CoreHome.Admin.csproj", "CoreHome.Admin/"]
1010
COPY ["CoreHome.Infrastructure/CoreHome.Infrastructure.csproj", "CoreHome.Infrastructure/"]

CoreHome.HomePage/CoreHome.HomePage.csproj

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

1111
<ItemGroup>
1212
<PackageReference Include="BuildBundlerMinifier" Version="3.2.449" />
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0-rc.1.23419.6">
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0-preview.3.23174.2">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>

CoreHome.HomePage/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:8.0-preview AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:8.0-jammy AS base
22
WORKDIR /app
33
EXPOSE 8080
44

@@ -7,7 +7,7 @@ RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
77
RUN apt update
88
RUN apt install libgdiplus -y
99

10-
FROM mcr.microsoft.com/dotnet/sdk:8.0-preview AS build
10+
FROM mcr.microsoft.com/dotnet/sdk:8.0-jammy AS build
1111
WORKDIR /src
1212
COPY ["CoreHome.HomePage/CoreHome.HomePage.csproj", "CoreHome.HomePage/"]
1313
COPY ["CoreHome.Infrastructure/CoreHome.Infrastructure.csproj", "CoreHome.Infrastructure/"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
Layout = "_Layout";
3-
ViewBag.FrameworkVersion = Environment.Version.ToString() + "-preview.7";
3+
ViewBag.FrameworkVersion = Environment.Version.ToString() + "-rc.1";
44
ViewBag.Profile = ProfileService.Config;
55
ViewBag.Theme = ThemeService.Config;
66
}

CoreHome.ReverseProxy/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:8.0-preview AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:8.0-jammy AS base
22
WORKDIR /app
33
EXPOSE 8080
44

5-
FROM mcr.microsoft.com/dotnet/sdk:8.0-preview AS build
5+
FROM mcr.microsoft.com/dotnet/sdk:8.0-jammy AS build
66
WORKDIR /src
77
COPY ["CoreHome.ReverseProxy/CoreHome.ReverseProxy.csproj", "CoreHome.ReverseProxy/"]
88
RUN dotnet restore "CoreHome.ReverseProxy/CoreHome.ReverseProxy.csproj"

0 commit comments

Comments
 (0)