Update MySQLDockerfile to use .NET 8.0 SDK

Upgrade from .NET 5.0.400 to .NET 8.0 using Microsoft's official
dotnet-install.sh script. This fixes test failures in PR #9597 where
the updated MySqlConnector package requires .NET 8.0 support.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Neil Macneale IV
2025-07-29 18:34:10 +00:00
parent 75521e6bbe
commit e4a681be4e
+1 -2
View File
@@ -78,8 +78,7 @@ RUN go install .
WORKDIR /
# install dotnet
RUN curl -LO https://download.visualstudio.microsoft.com/download/pr/13b9d84c-a35b-4ffe-8f62-447a01403d64/1f9ae31daa0f7d98513e7551246899f2/dotnet-sdk-5.0.400-linux-x64.tar.gz && \
tar -C /usr/local/bin -xzf dotnet-sdk-5.0.400-linux-x64.tar.gz && \
RUN curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 8.0 --install-dir /usr/local/bin --no-path && \
dotnet --version
# install pip for python3.9