File tree 7 files changed +321
-323
lines changed
7 files changed +321
-323
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<OutputType >Exe</OutputType >
4
- <TargetFramework >net8 .0</TargetFramework >
4
+ <TargetFramework >net9 .0</TargetFramework >
5
5
6
6
<AppendTargetFrameworkToOutputPath >false</AppendTargetFrameworkToOutputPath >
7
7
<AssemblyName >bgg-dungeon</AssemblyName >
30
30
<PackageReference Include =" Flurl" Version =" 4.0.0" />
31
31
<PackageReference Include =" Flurl.Http" Version =" 4.0.2" />
32
32
<PackageReference Include =" Microsoft.AspNet.WebApi.Client" Version =" 6.0.0" />
33
- <PackageReference Include =" Microsoft.Extensions.Hosting" Version =" 8 .0.1" />
34
- <PackageReference Include =" Microsoft.Extensions.Options" Version =" 8 .0.2 " />
33
+ <PackageReference Include =" Microsoft.Extensions.Hosting" Version =" 9 .0.1" />
34
+ <PackageReference Include =" Microsoft.Extensions.Options" Version =" 9 .0.1 " />
35
35
<PackageReference Include =" NetEscapades.Configuration.Yaml" Version =" 3.1.0" />
36
36
<PackageReference Include =" Polly" Version =" 8.5.2" />
37
37
<PackageReference Include =" Serilog" Version =" 4.2.0" />
Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1
2
- FROM mcr.microsoft.com/dotnet/runtime:8 .0.12-jammy
2
+ FROM mcr.microsoft.com/dotnet/runtime:9 .0.1-noble
3
3
4
4
LABEL org.opencontainers.image.source=https://github.com/gitfool/BoardGameGeek.Dungeon
5
5
@@ -11,16 +11,14 @@ RUN <<EOF
11
11
rm -rf /var/lib/apt/lists/*
12
12
EOF
13
13
14
- # Add non-root user
14
+ # Modify non-root user
15
15
RUN <<EOF
16
16
set -ex
17
- groupadd --gid 1000 user
18
- useradd --uid 1000 --gid 1000 --shell /bin/bash -m user
19
- echo "user ALL=(ALL:ALL) NOPASSWD: ALL" > /etc/sudoers.d/user
20
- chmod 0440 /etc/sudoers.d/user
17
+ echo "ubuntu ALL=(ALL:ALL) NOPASSWD: ALL" > /etc/sudoers.d/ubuntu
18
+ chmod 0440 /etc/sudoers.d/ubuntu
21
19
EOF
22
20
23
- USER user
21
+ USER ubuntu
24
22
25
23
RUN <<EOF
26
24
set -ex
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFramework >net8 .0</TargetFramework >
3
+ <TargetFramework >net9 .0</TargetFramework >
4
4
</PropertyGroup >
5
5
6
6
<ItemGroup >
Original file line number Diff line number Diff line change 1
1
{
2
2
"version" : 1 ,
3
3
"dependencies" : {
4
- "net8 .0" : {
4
+ "net9 .0" : {
5
5
"FluentValidation" : {
6
6
"type" : " Direct" ,
7
7
"requested" : " [11.11.0, )" ,
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFramework >net8 .0</TargetFramework >
3
+ <TargetFramework >net9 .0</TargetFramework >
4
4
5
5
<IsPackable >false</IsPackable >
6
6
<IsTestProject >true</IsTestProject >
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments