Skip to content

Commit

Permalink
fix: use correct assemblyname in Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
tnotheis committed Oct 23, 2023
1 parent bc2b2dc commit fb7467e
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion AdminUi/src/AdminUi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ RUN dotnet publish /property:WarningLevel=0 /p:UseAppHost=false --no-restore --c
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "AdminUi.dll"]
ENTRYPOINT ["dotnet", "Backbone.AdminUi.dll"]
2 changes: 1 addition & 1 deletion ConsumerApi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ COPY --from=build-env /app .

LABEL org.opencontainers.image.source = "https://github.com/nmshd/backbone"

ENTRYPOINT ["dotnet", "ConsumerApi.dll"]
ENTRYPOINT ["dotnet", "Backbone.ConsumerApi.dll"]
3 changes: 0 additions & 3 deletions Modules/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<Project>
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>Backbone.Modules.$(MSBuildProjectName)</AssemblyName>
<RootNamespace>$(AssemblyName.Replace(" ", "_"))</RootNamespace>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion Modules/Files/src/Files.Jobs.SanityCheck/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ RUN dotnet publish /property:UseAppHost=false /property:WarningLevel=0 --configu
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Files.Jobs.SanityCheck.dll"]
ENTRYPOINT ["dotnet", "Backbone.Files.Jobs.SanityCheck.dll"]
2 changes: 1 addition & 1 deletion Modules/Messages/src/Messages.Jobs.SanityCheck/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ RUN dotnet publish /property:UseAppHost=false /property:WarningLevel=0 --configu
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Messages.Jobs.SanityCheck.dll"]
ENTRYPOINT ["dotnet", "Backbone.Messages.Jobs.SanityCheck.dll"]
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ RUN dotnet publish /property:UseAppHost=false /property:WarningLevel=0 --configu
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Relationships.Jobs.SanityCheck.RelationshipChange.dll"]
ENTRYPOINT ["dotnet", "Backbone.Relationships.Jobs.SanityCheck.RelationshipChange.dll"]
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ RUN dotnet publish /property:UseAppHost=false /property:WarningLevel=0 --configu
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Relationships.Jobs.SanityCheck.RelationshipTemplate.dll"]
ENTRYPOINT ["dotnet", "Backbone.Relationships.Jobs.SanityCheck.RelationshipTemplate.dll"]
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ RUN dotnet publish /property:UseAppHost=false /property:WarningLevel=0 --configu
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Synchronization.Jobs.SanityCheck.dll"]
ENTRYPOINT ["dotnet", "Backbone.Synchronization.Jobs.SanityCheck.dll"]
2 changes: 1 addition & 1 deletion Modules/Tokens/src/Tokens.Jobs.SanityCheck/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ RUN dotnet publish /property:UseAppHost=false /property:WarningLevel=0 --configu
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Tokens.Jobs.SanityCheck.dll"]
ENTRYPOINT ["dotnet", "Backbone.Tokens.Jobs.SanityCheck.dll"]

0 comments on commit fb7467e

Please sign in to comment.