Skip to content

Commit e2c6049

Browse files
authored
Update third-party licenses for 0.2.0 release (#115)
* Update packages * Update third-party-liceneses * Include license files in Docker image * Update CodeQL to v2 * Add license notice Signed-off-by: Victor Chang <[email protected]>
1 parent 3851d32 commit e2c6049

25 files changed

+49537
-3759
lines changed

.dockerignore

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
# limitations under the License.
1414

1515
.github/
16-
docs/
1716
demos/
1817
guidelines/
1918
tests/

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
${{ runner.os }}-nuget
9595
9696
- name: Initialize CodeQL
97-
uses: github/codeql-action/init@v1
97+
uses: github/codeql-action/init@v2
9898
with:
9999
languages: ${{ matrix.language }}
100100

@@ -117,7 +117,7 @@ jobs:
117117
nugetdefense -p src/${{ env.SOLUTION }} --settings-file NuGetDefense.json
118118
119119
- name: Perform CodeQL Analysis
120-
uses: github/codeql-action/analyze@v1
120+
uses: github/codeql-action/analyze@v2
121121

122122
- name: Secret detection
123123
uses: gitleaks/[email protected]
@@ -371,7 +371,7 @@ jobs:
371371
severity-cutoff: critical
372372

373373
- name: Upload Anchore scan SARIF report
374-
uses: github/codeql-action/upload-sarif@v1
374+
uses: github/codeql-action/upload-sarif@v2
375375
if: ${{ (matrix.os == 'ubuntu-latest') }}
376376
with:
377377
sarif_file: ${{ steps.anchore-scan.outputs.sarif }}

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ RUN dotnet publish -c Release -o out --nologo src/InformaticsGateway/Monai.Deplo
2929
FROM mcr.microsoft.com/dotnet/aspnet:6.0-focal
3030

3131
ENV DEBIAN_FRONTEND=noninteractive
32-
3332
RUN apt-get clean \
3433
&& apt-get update \
3534
&& apt-get install -y --no-install-recommends \
@@ -39,10 +38,11 @@ RUN apt-get clean \
3938
&& rm -rf /var/lib/apt/lists
4039

4140
WORKDIR /opt/monai/ig
42-
COPY --from=build /app/out .
43-
#COPY docs/compliance/open-source-licenses.md .
4441

42+
COPY --from=build /app/out .
4543
COPY --from=build /tools /opt/dotnetcore-tools
44+
COPY LICENSE ./
45+
COPY docs/compliance/third-party-licenses.md ./
4646

4747
EXPOSE 104
4848
EXPOSE 2575

LICENSE

+10-1
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,13 @@
198198
distributed under the License is distributed on an "AS IS" BASIS,
199199
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200200
See the License for the specific language governing permissions and
201-
limitations under the License.
201+
limitations under the License.
202+
203+
---
204+
205+
Copyright (c) MONAI Consortium. All rights reserved.
206+
Licensed under the [Apache-2.0](LICENSE) license.
207+
208+
This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm).
209+
210+
By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page.

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,15 @@ Join the conversation on Twitter [@ProjectMONAI](https://twitter.com/ProjectMONA
8181

8282
Ask and answer questions over on [MONAI Deploy Informatics Gateway's GitHub Discussions tab](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/discussions).
8383

84+
## License
85+
86+
Copyright (c) MONAI Consortium. All rights reserved.
87+
Licensed under the [Apache-2.0](LICENSE) license.
88+
89+
This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm).
90+
91+
By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](docs/compliance/third-party-licenses.md) page.
92+
8493
## Links
8594

8695
- Website: <https://monai.io>

0 commit comments

Comments
 (0)