Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-ef": {
"version": "8.0.2",
"version": "9.0.10",
"commands": ["dotnet-ef"]
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/KeyConnector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0-noble
FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble

LABEL com.bitwarden.product="bitwarden"

Expand All @@ -20,7 +20,7 @@
&& apt-get install -y -f --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENV ASPNETCORE_URLS http://+:5000

Check warning on line 23 in src/KeyConnector/Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker images

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
WORKDIR /app
EXPOSE 5000

Expand Down
8 changes: 4 additions & 4 deletions src/KeyConnector/KeyConnector.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
<PackageReference Include="Google.Cloud.Kms.V1" Version="3.7.0"/>
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="3.0.1"/>
<PackageReference Include="JsonFlatFileDataStore" Version="2.4.2"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.2">
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.10">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.2"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.2"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.2"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.10"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.10"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.10"/>
<PackageReference Include="MongoDB.Driver" Version="2.22.0"/>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.2"/>
<PackageReference Include="Pkcs11Interop" Version="5.1.2"/>
Expand Down
Loading