Compare commits

..

3 Commits

Author SHA1 Message Date
0135b89f01 reduce number of emitted logs
Some checks failed
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m5s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
SonarQube Scan / SonarQube Trigger (push) Failing after 4m47s
2025-05-21 04:33:24 -07:00
8c1bbc9866 release: version 0.2.5 🚀
Some checks failed
Build Docker image / Create Release (push) Successful in 24s
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m11s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
Build Docker image / deploy (push) Successful in 2m16s
SonarQube Scan / SonarQube Trigger (push) Failing after 4m52s
2025-05-18 11:59:55 +02:00
8100998732 fix: install dependencies in runtime container not only build container, refs NOISSUE 2025-05-18 11:59:52 +02:00
4 changed files with 14 additions and 2 deletions

View File

@@ -14,5 +14,6 @@ RUN dotnet publish ./song_of_the_day/song_of_the_day.csproj -o out
# Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:9.0
WORKDIR /App
RUN apt update && apt install libldap-2.5-0 -y
COPY --from=build /App/out .
ENTRYPOINT ["dotnet", "song_of_the_day.dll"]

View File

@@ -5,10 +5,22 @@ Changelog
(unreleased)
------------
Fix
~~~
- Install dependencies in runtime container not only build container,
refs NOISSUE. [Simon Diesenreiter]
0.2.4 (2025-05-18)
------------------
Fix
~~~
- Build errors, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.2.3 (2025-05-18)
------------------

View File

@@ -27,7 +27,6 @@ userCheckTimer.OnOccurence += async (s, ea) =>
var needsSaving = false;
foreach (var memberId in memberList)
{
Console.WriteLine("found member: " + memberId);
var foundUser = dci.Users.Where(u => u.SignalMemberId == memberId).SingleOrDefault();
if (foundUser == null)
{

View File

@@ -1 +1 @@
0.2.4
0.2.5