Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
39861f7
Create dependabot.yml
mocsharp Aug 30, 2022
9334da2
Bump actions/cache from 2.1.7 to 3.0.8 (#123)
dependabot[bot] Sep 2, 2022
9a94d2c
Bump actions/setup-dotnet from 1 to 2 (#121)
dependabot[bot] Sep 2, 2022
536e2c5
Bump anchore/scan-action from 3.2.0 to 3.2.5 (#120)
dependabot[bot] Sep 2, 2022
0746d1d
Bump actions/setup-java from 1 to 3 (#122)
dependabot[bot] Sep 2, 2022
3e85792
Bump docker/login-action from 1.12.0 to 2.0.0 (#126)
dependabot[bot] Sep 2, 2022
64264fc
Implement FHIR server (#118)
mocsharp Sep 6, 2022
df6ecad
Integrate MS Health Check Service (#130)
mocsharp Sep 6, 2022
336ff33
Bump codecov/codecov-action from 2 to 3 (#131)
dependabot[bot] Sep 6, 2022
4aeab01
Bump jungwinter/split from 1 to 2 (#136)
dependabot[bot] Sep 6, 2022
5fbf6ae
Bump actions/download-artifact from 2 to 3 (#139)
dependabot[bot] Sep 6, 2022
63f5ab7
Bump actions/upload-artifact from 2.3.1 to 3.1.0 (#133)
dependabot[bot] Sep 6, 2022
f6745f6
Bump crazy-max/ghaction-chocolatey from 1 to 2 (#132)
dependabot[bot] Sep 6, 2022
c5356e0
Bump docker/metadata-action from 3.6.2 to 4.0.1 (#135)
dependabot[bot] Sep 6, 2022
0f2c714
Bump actions/checkout from 2 to 3 (#143)
dependabot[bot] Sep 6, 2022
b39eb74
Bump gittools/actions from 0.9.11 to 0.9.13 (#142)
dependabot[bot] Sep 6, 2022
424d029
Bump docker/build-push-action from 2.9.0 to 3.1.1 (#140)
dependabot[bot] Sep 6, 2022
084c94d
Merge Release/0.3.0 into develop (#150)
mocsharp Sep 13, 2022
1579f20
Merge main to develop (#151)
mocsharp Sep 14, 2022
82eb310
Bump Docker.DotNet from 3.125.10 to 3.125.11 (#147)
dependabot[bot] Sep 14, 2022
c758629
Bump System.IO.Abstractions from 17.1.1 to 17.2.1 (#146)
dependabot[bot] Sep 14, 2022
d469873
Bump System.IO.Abstractions.TestingHelpers from 17.1.1 to 17.2.1 (#145)
dependabot[bot] Sep 14, 2022
1932b08
Release/0.3.0 (#152)
mocsharp Sep 14, 2022
1ff3bad
Update .gitversion.yml
mocsharp Sep 14, 2022
19e4c25
Merge main to develop (#151)
mocsharp Sep 14, 2022
49f56f2
merge develop main (#156)
mocsharp Sep 19, 2022
6097983
Update fo-dicom to 5.0.3 (#164)
mocsharp Sep 20, 2022
321abbb
Bump anchore/scan-action from 3.2.5 to 3.3.0 (#158)
dependabot[bot] Sep 20, 2022
5b05935
Update default SCU AET to MONAISCU (#157)
mocsharp Sep 21, 2022
09887b1
Ability to switch temporary storage to use either memory or disk (#166)
mocsharp Sep 23, 2022
dc898fe
Revert "Ability to switch temporary storage to use either memory or d…
mocsharp Sep 23, 2022
148c1e4
rebased changes (#170)
neildsouth Sep 26, 2022
34974f1
Ability to switch temporary storage to use either memory or disk (#169)
mocsharp Sep 26, 2022
6487fa3
Bump Microsoft.NET.Test.Sdk from 17.3.1 to 17.3.2
dependabot[bot] Sep 26, 2022
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge Release/0.3.0 into develop (#150)
* Ignore dependabot.yml from the license scan * Update third-party licenses * Update license links * Fix missing header * Updates per feedback * Switch base image to 6.0-jammy (#148) Signed-off-by: Victor Chang <vicchang@nvidia.com>
  • Loading branch information
mocsharp authored Sep 13, 2022
commit 084c94d3d404da08eafeb9b7415705262e8dec14
1 change: 1 addition & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ header:
paths-ignore:
- 'LICENSE'
- '.github/**/*.md'
- '.github/dependabot.yml'
- '**/*.log'
- '**/bin/**'
- '**/obj/**'
Expand Down
8 changes: 3 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM mcr.microsoft.com/dotnet/sdk:6.0-focal as build
FROM mcr.microsoft.com/dotnet/sdk:6.0-jammy as build

# Install the tools
RUN dotnet tool install --tool-path /tools dotnet-trace
Expand All @@ -26,17 +26,15 @@ RUN echo "Building MONAI Deploy Informatics Gateway..."
RUN dotnet publish -c Release -o out --nologo src/InformaticsGateway/Monai.Deploy.InformaticsGateway.csproj

# Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:6.0-focal
FROM mcr.microsoft.com/dotnet/aspnet:6.0-jammy

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get clean \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
libssl1.1 \
openssl \
sqlite3 \
curl \
&& rm -rf /var/lib/apt/lists
&& rm -rf /var/lib/apt/lists

WORKDIR /opt/monai/ig

Expand Down
14 changes: 7 additions & 7 deletions doc/dependency_decisions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@
- - :approve
- System.Configuration.ConfigurationManager
- :who: mocsharp
:why: MIT ( https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
:why: MIT ( https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
:versions:
- 4.5.0
:when: 2022-08-16 23:06:43.335979768 Z
Expand Down Expand Up @@ -1493,7 +1493,7 @@
- - :approve
- System.Reflection.Metadata
- :who: mocsharp
:why: MIT (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
:why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
:versions:
- 1.6.0
:when: 2022-08-16 23:07:03.120522282 Z
Expand Down Expand Up @@ -1535,7 +1535,7 @@
- - :approve
- System.Runtime.CompilerServices.Unsafe
- :who: mocsharp
:why: MIT (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
:why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
:versions:
- 4.5.1
:when: 2022-08-16 23:07:05.893799510 Z
Expand Down Expand Up @@ -1612,7 +1612,7 @@
- - :approve
- System.Security.AccessControl
- :who: mocsharp
:why: MIT (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
:why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
:versions:
- 4.5.0
:when: 2022-08-16 23:07:11.063425328 Z
Expand Down Expand Up @@ -1668,7 +1668,7 @@
- - :approve
- System.Security.Cryptography.ProtectedData
- :who: mocsharp
:why: MIT (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
:why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
:versions:
- 4.5.0
:when: 2022-08-16 23:07:14.759818552 Z
Expand All @@ -1682,7 +1682,7 @@
- - :approve
- System.Security.Permissions
- :who: mocsharp
:why: MIT (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
:why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
:versions:
- 4.5.0
:when: 2022-08-16 23:07:15.681971110 Z
Expand Down Expand Up @@ -1717,7 +1717,7 @@
- - :approve
- System.Text.Encoding.CodePages
- :who: mocsharp
:why: MIT (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
:why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
:versions:
- 4.6.0
:when: 2022-08-16 23:07:17.991171210 Z
Expand Down
5 changes: 1 addition & 4 deletions docs/api/rest/fhir.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The `fhir/` endpoint implements the specifications defined in [section 3.1.0 RES
defined by HL7 (Health Level 7 International) to enable triggering new workflows. The FHIR service supports multiple versions of the Fast Healthcare Interoperability Resources (FHIR) specifications published by Health Level 7 International (HL7).

[!Note]
The service does not support `CapabilityStatement` at this moment and does not group the incoming FHIR resources. Therefore, each incoming FHIR resource will trigger a new workflow request.
The service does not support [CapabilityStatement](https://www.hl7.org/fhir/capabilitystatement.html) at this moment and does not group the incoming FHIR resources. Therefore, each incoming FHIR resource will trigger a new workflow request.

The *FHIR* service provides the following endpoint.

Expand Down Expand Up @@ -61,6 +61,3 @@ If the `Accept` header is missing or a none supported value exists, the service
| 400 | [OperationOutcome](http://hl7.org/fhir/operationoutcome.html) | Unable to parse the resource or mismatching resource type specified.. |
| 415 | `none` | Unsupported media type |
| 500 | [OperationOutcome](http://hl7.org/fhir/operationoutcome.html) | Server error. |

[!Note]
The `Location` header in the response given that the resources created are for inference only.
Loading