KI shit haha

This commit is contained in:
2025-11-05 21:15:10 +01:00
parent 8e8bfaee45
commit cfb97536ca
50 changed files with 906 additions and 5029 deletions

View File

@@ -14,6 +14,10 @@ RUN dotnet publish -c Release -o /app/publish /p:UseAppHost=false
# 2. Laufzeit-Phase: ASP.NET Core Runtime
FROM mcr.microsoft.com/dotnet/aspnet:8.0
# Build-Argument für Version (wird zur Build-Zeit vom CI/CD gesetzt)
ARG VERSION=latest
WORKDIR /app
COPY --from=build /app/publish .
@@ -28,5 +32,8 @@ EXPOSE 5000
ENV ASPNETCORE_URLS=http://*:5000
ENV ASPNETCORE_ENVIRONMENT=Development
# Version als Environment Variable setzen
ENV WATCHER_VERSION=${VERSION}
# Anwendung starten
ENTRYPOINT ["dotnet", "Watcher.dll"]