Dockerfile aktualisiert
Some checks failed
Build ARM64 Linux / build-arm64 (push) Has been cancelled
Build Linux x64 / build-linux-x64 (push) Has been cancelled
Build Windows x64 / build-windows-x64 (push) Has been cancelled
Build Docker Linux ARM64 / build-docker-linux-x64 (push) Failing after 3m27s

This commit is contained in:
Henry Trumme
2025-12-11 00:04:03 +01:00
parent 44a2a61e2a
commit 8e3c164d98

View File

@@ -4,7 +4,7 @@ WORKDIR /src
# Kopiere die Projektdatei (.csproj) und lade Abhängigkeiten # Kopiere die Projektdatei (.csproj) und lade Abhängigkeiten
# Ersetze "DeinProjektName.csproj" evtl. durch "*.csproj", wenn du nur eine hast # Ersetze "DeinProjektName.csproj" evtl. durch "*.csproj", wenn du nur eine hast
COPY ../CouchLog/CouchLog.sln ./ COPY ../CouchLog/CouchLog.sln ./
RUN dotnet restore RUN dotnet restore ./CouchLog.sln
# Kopiere den restlichen Code und baue die App (Release Modus) # Kopiere den restlichen Code und baue die App (Release Modus)
COPY ../CouchLog/ ./ COPY ../CouchLog/ ./