Skip to content
Merged
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
###############################################################################
FROM mcr.microsoft.com/dotnet/sdk:10.0.302-alpine3.24-amd64 AS init
FROM mcr.microsoft.com/dotnet/sdk:10.0.400-alpine3.24-amd64 AS init

ENV WORKDIR=/app
WORKDIR ${WORKDIR}
Expand Down Expand Up @@ -105,7 +105,7 @@ CMD ["make", "test"]
## in the production phase, "good practices" such as
## WORKDIR and USER are maintained
##
FROM mcr.microsoft.com/dotnet/runtime:10.0.10-alpine3.24-extra-amd64 AS production
FROM mcr.microsoft.com/dotnet/runtime:10.0.11-alpine3.24-extra-amd64 AS production

RUN apk add --update --no-cache make \
&& apk upgrade --no-cache # Avoid some CVE reports updating basic packages.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.302">
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.400">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.302">
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.400">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.10" />
<PackageReference Include="System.Text.Json" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.11" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.11" />
<PackageReference Include="System.Text.Json" Version="10.0.11" />
</ItemGroup>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.302">
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.400">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
Loading