Skip to content

Commit 084c94d

Browse files
authored
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>
1 parent 424d029 commit 084c94d

File tree

5 files changed

+10606
-17360
lines changed

5 files changed

+10606
-17360
lines changed

.licenserc.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ header:
2020
paths-ignore:
2121
- 'LICENSE'
2222
- '.github/**/*.md'
23+
- '.github/dependabot.yml'
2324
- '**/*.log'
2425
- '**/bin/**'
2526
- '**/obj/**'

Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

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

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

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

3131
ENV DEBIAN_FRONTEND=noninteractive
3232
RUN apt-get clean \
3333
&& apt-get update \
3434
&& apt-get install -y --no-install-recommends \
35-
libssl1.1 \
36-
openssl \
3735
sqlite3 \
3836
curl \
39-
&& rm -rf /var/lib/apt/lists
37+
&& rm -rf /var/lib/apt/lists
4038

4139
WORKDIR /opt/monai/ig
4240

doc/dependency_decisions.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1192,7 +1192,7 @@
11921192
- - :approve
11931193
- System.Configuration.ConfigurationManager
11941194
- :who: mocsharp
1195-
:why: MIT ( https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
1195+
:why: MIT ( https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
11961196
:versions:
11971197
- 4.5.0
11981198
:when: 2022-08-16 23:06:43.335979768 Z
@@ -1493,7 +1493,7 @@
14931493
- - :approve
14941494
- System.Reflection.Metadata
14951495
- :who: mocsharp
1496-
:why: MIT (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
1496+
:why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
14971497
:versions:
14981498
- 1.6.0
14991499
:when: 2022-08-16 23:07:03.120522282 Z
@@ -1535,7 +1535,7 @@
15351535
- - :approve
15361536
- System.Runtime.CompilerServices.Unsafe
15371537
- :who: mocsharp
1538-
:why: MIT (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
1538+
:why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
15391539
:versions:
15401540
- 4.5.1
15411541
:when: 2022-08-16 23:07:05.893799510 Z
@@ -1612,7 +1612,7 @@
16121612
- - :approve
16131613
- System.Security.AccessControl
16141614
- :who: mocsharp
1615-
:why: MIT (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
1615+
:why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
16161616
:versions:
16171617
- 4.5.0
16181618
:when: 2022-08-16 23:07:11.063425328 Z
@@ -1668,7 +1668,7 @@
16681668
- - :approve
16691669
- System.Security.Cryptography.ProtectedData
16701670
- :who: mocsharp
1671-
:why: MIT (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
1671+
:why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
16721672
:versions:
16731673
- 4.5.0
16741674
:when: 2022-08-16 23:07:14.759818552 Z
@@ -1682,7 +1682,7 @@
16821682
- - :approve
16831683
- System.Security.Permissions
16841684
- :who: mocsharp
1685-
:why: MIT (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
1685+
:why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
16861686
:versions:
16871687
- 4.5.0
16881688
:when: 2022-08-16 23:07:15.681971110 Z
@@ -1717,7 +1717,7 @@
17171717
- - :approve
17181718
- System.Text.Encoding.CodePages
17191719
- :who: mocsharp
1720-
:why: MIT (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
1720+
:why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT)
17211721
:versions:
17221722
- 4.6.0
17231723
:when: 2022-08-16 23:07:17.991171210 Z

docs/api/rest/fhir.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The `fhir/` endpoint implements the specifications defined in [section 3.1.0 RES
2020
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).
2121

2222
[!Note]
23-
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.
23+
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.
2424

2525
The *FHIR* service provides the following endpoint.
2626

@@ -61,6 +61,3 @@ If the `Accept` header is missing or a none supported value exists, the service
6161
| 400 | [OperationOutcome](http://hl7.org/fhir/operationoutcome.html) | Unable to parse the resource or mismatching resource type specified.. |
6262
| 415 | `none` | Unsupported media type |
6363
| 500 | [OperationOutcome](http://hl7.org/fhir/operationoutcome.html) | Server error. |
64-
65-
[!Note]
66-
The `Location` header in the response given that the resources created are for inference only.

0 commit comments

Comments
 (0)