Changes
Build and Push Docker Images / build (push) Failing after 6s

This commit is contained in:
2026-05-14 16:09:57 +03:00
parent 501f86a970
commit b58b3c9314
+2 -2
View File
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:10.0-nobel AS build
ARG BUILD_CONFIGURATION=Release
WORKDIR /src
@@ -18,7 +18,7 @@ COPY Apis/shared-models/ Apis/shared-models/
RUN dotnet publish Jobs/cv-cleanup-job/cv-cleanup-job.csproj -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS final
FROM mcr.microsoft.com/dotnet/aspnet:10.0-nobel AS final
WORKDIR /app
COPY --from=build /app/publish .