Skip to content

Commit

Permalink
Update dotnet runtime to 8.0-bookworm-slim
Browse files Browse the repository at this point in the history
  • Loading branch information
luiscantero committed Nov 23, 2023
1 parent 6948d0b commit eac539c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/scripts/docker-source.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -86,23 +86,23 @@ ENV PATH="${PATH}:/root/vsdbg/vsdbg"
$platforms = @{
"linux/arm/v7" = @{
runtimeId = "linux-arm"
image = "mcr.microsoft.com/dotnet/runtime-deps:7.0-bullseye-slim"
image = "mcr.microsoft.com/dotnet/runtime-deps:8.0-bookworm-slim"
platformTag = "linux-arm32v7"
runtimeOnly = "RUN chmod +x $($assemblyName)"
debugger = $installLinuxDebugger
entryPoint = "[`"./$($assemblyName)`"]"
}
"linux/arm64" = @{
runtimeId = "linux-arm64"
image = "mcr.microsoft.com/dotnet/runtime-deps:7.0-bullseye-slim"
image = "mcr.microsoft.com/dotnet/runtime-deps:8.0-bookworm-slim"
platformTag = "linux-arm64v8"
runtimeOnly = "RUN chmod +x $($assemblyName)"
debugger = $null
entryPoint = "[`"./$($assemblyName)`"]"
}
"linux/amd64" = @{
runtimeId = "linux-x64"
image = "mcr.microsoft.com/dotnet/runtime-deps:7.0-bullseye-slim"
image = "mcr.microsoft.com/dotnet/runtime-deps:8.0-bookworm-slim"
platformTag = "linux-amd64"
runtimeOnly = "RUN chmod +x $($assemblyName)"
debugger = $installLinuxDebugger
Expand Down

0 comments on commit eac539c

Please sign in to comment.