Skip to content

Commit

Permalink
fixup for docker build
Browse files Browse the repository at this point in the history
Signed-off-by: Neil South <[email protected]>
  • Loading branch information
neildsouth committed Aug 25, 2023
1 parent f88af26 commit b069e17
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .dockerignore
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,9 @@ bld/
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/
!*.[Cc]ache/

docker-compose/
doc
guidlines
tests
5 changes: 3 additions & 2 deletions src/InformaticsGateway/Monai.Deploy.InformaticsGateway.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
<ProjectReference Include="..\Database\EntityFramework\Monai.Deploy.InformaticsGateway.Database.EntityFramework.csproj" />
<ProjectReference Include="..\Database\Monai.Deploy.InformaticsGateway.Database.csproj" />
<ProjectReference Include="..\DicomWebClient\Monai.Deploy.InformaticsGateway.DicomWeb.Client.csproj" />
<ProjectReference Include="..\Plug-ins\RemoteAppExecution\Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.csproj" />
</ItemGroup>

<ItemGroup>
Expand All @@ -84,7 +85,7 @@
<Target Name="CopyPlugins" AfterTargets="Publish">
<ItemGroup>
<PluginDlls Include="$(PublishDir)Monai.Deploy.Messaging.RabbitMQ.dll;$(PublishDir)Monai.Deploy.Storage.MinIO.dll;$(PublishDir)Minio.dll" />
<IOPligins Include="$(SolutionDir)/Plug-ins/RemoteAppExecution/bin/Debug/net6.0/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.dll" />
<IOPligins Include="$(PublishDir)Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.dll" />
</ItemGroup>
<Copy SourceFiles="@(PluginDlls);@(IOPligins)" DestinationFolder="$(PublishDir)\plug-ins\" SkipUnchangedFiles="true" />
<Message Text="Files copied successfully to $(PublishDir)\plug-ins\." Importance="high" />
Expand All @@ -93,7 +94,7 @@
<Target Name="CopyPluginsBuild" AfterTargets="Build">
<ItemGroup>
<PluginDlls Include="$(OutDir)Monai.Deploy.Messaging.RabbitMQ.dll;$(OutDir)Monai.Deploy.Storage.MinIO.dll;$(OutDir)Minio.dll" />
<IOPligins Include="$(SolutionDir)/Plug-ins/RemoteAppExecution/bin/Debug/net6.0/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.dll" />
<IOPligins Include="$(OutDir)Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.dll" />
</ItemGroup>
<Copy SourceFiles="@(PluginDlls);@(IOPligins)" DestinationFolder="$(OutDir)\plug-ins\" SkipUnchangedFiles="true" />
<Message Text="Files copied successfully to $(OutDir)\plug-ins\." Importance="high" />
Expand Down

0 comments on commit b069e17

Please sign in to comment.