healthcheck

This commit is contained in:
2026-08-09 16:12:34 +02:00
parent a877ae945d
commit ee760f9cb0
4 changed files with 102 additions and 0 deletions
+1
View File
@@ -17,6 +17,7 @@ RUN dotnet publish FocusApp.csproj -c Release -o /app/publish --no-restore -p:Sk
# Stage 3: Runtime
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY --from=build /app/publish .
COPY LICENSE .