diff --git a/src/Web/Masa.Alert.Web.Admin.Server/Dockerfile b/src/Web/Masa.Alert.Web.Admin.Server/Dockerfile index 628e185..4b2eecd 100644 --- a/src/Web/Masa.Alert.Web.Admin.Server/Dockerfile +++ b/src/Web/Masa.Alert.Web.Admin.Server/Dockerfile @@ -1,11 +1,11 @@ -FROM registry.cn-hangzhou.aliyuncs.com/masa/dotnet_sdk:6.0.403 AS publish +FROM registry.cn-hangzhou.aliyuncs.com/masa/sdk:8.0.203 AS publish WORKDIR /src COPY . . ENV CSPROJ="src/Web/Masa.Alert.Web.Admin.Server/Masa.Alert.Web.Admin.Server.csproj" RUN dotnet restore $CSPROJ && dotnet publish $CSPROJ -c Release -o /app/publish -FROM registry.cn-hangzhou.aliyuncs.com/masa/dotnet_aspnet:6.0.4 +FROM registry.cn-hangzhou.aliyuncs.com/masa/dotnet_aspnet:8.0.3 WORKDIR /app COPY --from=publish /app/publish . COPY ["src/Web/Masa.Alert.Web.Admin/wwwroot/i18n","wwwroot/i18n"]