diff --git a/CHANGELOG.md b/CHANGELOG.md index 806cfbf..28a79a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.107] - 2025-04-13 +### Fixed +- Fixed Docker release versioning. + ## [2.0.106] - 2025-04-13 ### Fixed - Changed how the GitHub release is created and how the changelog is generated. diff --git a/Dockerfile b/Dockerfile index ab55018..29425db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ RUN \ echo "**** Building Source Code for $TARGETPLATFORM on $BUILDPLATFORM ****" && \ cd server && \ dotnet restore --no-cache RdtClient.sln && \ - dotnet test \ + dotnet test && \ dotnet publish --no-restore -c Release -o out ; # Stage 3 - Build runtime image