Skip to content

Commit

Permalink
Build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
s-vitaliy committed Jul 18, 2024
1 parent a88cb79 commit 5e2b933
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -44,4 +44,4 @@ COPY --from=build-env /app/out .

USER app

ENTRYPOINT ["dotnet", "Arcane.Stream.BlobStorage.dll"]
ENTRYPOINT ["dotnet", "Arcane.Ingestion.dll"]

0 comments on commit 5e2b933

Please sign in to comment.