Skip to content

Commit

Permalink
Fix dll docker files
Browse files Browse the repository at this point in the history
  • Loading branch information
oveldman committed Mar 2, 2024
1 parent 97db316 commit 74ef357
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sources/Clients.Admin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ RUN dotnet publish "Clients.Admin.csproj" -c $BUILD_CONFIGURATION -o /app/publis
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Clients.Admin.dll"]
ENTRYPOINT ["dotnet", "MadWorldNL.Clients.Admin.dll"]
2 changes: 1 addition & 1 deletion sources/Server.Presentation.Grpc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ RUN dotnet publish "Server.Presentation.Grpc.csproj" -c $BUILD_CONFIGURATION -o
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Server.Presentation.Grpc.dll"]
ENTRYPOINT ["dotnet", "MadWorldNL.Server.Presentation.Grpc.dll"]

0 comments on commit 74ef357

Please sign in to comment.