Skip to content

Commit 0f931bf

Browse files
committed
Add barebone content based on Neuron 2.16
1 parent cfcd7e3 commit 0f931bf

19 files changed

+1334
-6
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "docker"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "daily"

.github/workflows/ci.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- main
6+
paths-ignore:
7+
- '**.md'
8+
pull_request:
9+
branches:
10+
- main
11+
paths-ignore:
12+
- '**.md'
13+
permissions:
14+
id-token: write
15+
contents: write
16+
17+
jobs:
18+
dockerfile-linter:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v3
22+
- uses: hadolint/hadolint-action@v3.1.0
23+
with:
24+
dockerfile: Dockerfile
25+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea/

CONTRIBUTING.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of
5050
opensource-codeofconduct@amazon.com with any additional questions or comments.
5151

5252

53-
## Security issue notifications
54-
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
55-
56-
5753
## Licensing
5854

5955
See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## My Project
1+
## Neuron Deep Learning Containers
22

33
TODO: Fill this README out!
44

@@ -9,7 +9,7 @@ Be sure to:
99

1010
## Security
1111

12-
See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information.
12+
See [SECURITY](SECURITY.md) for more information.
1313

1414
## License
1515

SECURITY.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Reporting Security Issues
2+
3+
We take all security reports seriously.
4+
When we receive such reports,
5+
we will investigate and subsequently address
6+
any potential vulnerabilities as quickly as possible.
7+
If you discover a potential security issue in this project,
8+
please notify AWS/Amazon Security via our
9+
[vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/)
10+
or directly via email to [AWS Security](mailto:aws-security@amazon.com).
11+
Please do *not* create a public GitHub issue in this project.

0 commit comments

Comments
 (0)