1
0
mirror of https://github.com/bitwarden/server synced 2026-01-03 00:53:37 +00:00

update to aspnet 2.1.4

This commit is contained in:
Kyle Spearrin
2018-09-11 13:29:34 -04:00
parent 4ec5f2fdb2
commit ce309c27d4
24 changed files with 24 additions and 48 deletions

View File

@@ -12,9 +12,8 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv" Version="2.1.2" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.1" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.4" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.4" />
</ItemGroup>
</Project>

View File

@@ -1,4 +1,4 @@
FROM microsoft/dotnet:2.1.2-aspnetcore-runtime
FROM microsoft/dotnet:2.1.4-aspnetcore-runtime
LABEL com.bitwarden.product="bitwarden"

View File

@@ -10,8 +10,6 @@ namespace Bit.Admin
WebHost
.CreateDefaultBuilder(args)
.UseStartup<Startup>()
// ref: https://github.com/aspnet/KestrelHttpServer/issues/2694
.UseLibuv()
.Build()
.Run();
}