feature/user-authentication #2

Merged
lasserh merged 31 commits from feature/user-authentication into main 2026-06-07 13:17:55 +02:00
Showing only changes of commit eb6659e9fe - Show all commits

View file

@ -47,9 +47,9 @@ ENV ASPNETCORE_ENVIRONMENT=Production
# Expose port
EXPOSE 8080
# Health check - use CMD-SHELL for bash /dev/tcp support
# Health check - use bash /dev/tcp to check port (no curl needed)
HEALTHCHECK --interval=30s --timeout=3s --start-period=15s --retries=3 \
CMD-SHELL echo > /dev/tcp/localhost/8080 || exit 1
CMD bash -c "echo > /dev/tcp/localhost/8080 || exit 1"
# Entry point
ENTRYPOINT ["dotnet", "GermanApp.dll"]