feat(ops): production resilience — healthchecks, restart_policy, log-rotation, --wait deploy [skip ci]

This commit is contained in:
2026-06-13 20:04:42 +02:00
parent 6cedd8410f
commit d169cbe9d5
4 changed files with 51 additions and 9 deletions
+1
View File
@@ -8,6 +8,7 @@ RUN dotnet publish -c Release -o /app/publish
FROM mcr.microsoft.com/dotnet/aspnet:10.0-alpine
WORKDIR /app
COPY --from=build /app/publish .
RUN apk add --no-cache curl
USER $APP_UID
EXPOSE 8080
ENTRYPOINT ["dotnet", "Nexus.Api.dll"]