From 5e2b93307471ec850fc9dc4490a94be53115b38d Mon Sep 17 00:00:00 2001 From: Vitalii Savitskii Date: Thu, 18 Jul 2024 13:26:38 +0200 Subject: [PATCH] Build fix --- .container/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.container/Dockerfile b/.container/Dockerfile index 05788a4..87ab9cd 100644 --- a/.container/Dockerfile +++ b/.container/Dockerfile @@ -16,7 +16,7 @@ RUN dotnet_arch=$(test "$TARGETARCH" = "amd64" && echo "x64" || echo "$TARGETARC # Copy everything else and build COPY src/. ./ RUN dotnet_arch=$(test "$TARGETARCH" = "amd64" && echo "x64" || echo "$TARGETARCH") && \ - dotnet publish "Arcane.Stream.BlobStorage.csproj" -c Release -o out --runtime "linux-$dotnet_arch" + dotnet publish "Arcane.Ingestion.csproj" -c Release -o out --runtime "linux-$dotnet_arch" # Build runtime image FROM mcr.microsoft.com/dotnet/aspnet:8.0-bookworm-slim @@ -44,4 +44,4 @@ COPY --from=build-env /app/out . USER app -ENTRYPOINT ["dotnet", "Arcane.Stream.BlobStorage.dll"] +ENTRYPOINT ["dotnet", "Arcane.Ingestion.dll"]