-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from deeagle/dev/task_add-hadolint
Dev/task add hadolint
- Loading branch information
Showing
4 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
.git | ||
.gitignore | ||
.idea | ||
.hadolint.yml | ||
.markdownlint.yml | ||
.releaserc | ||
Dockerfile | ||
run-ci.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Hadolint configuration file | ||
|
||
failure-threshold: info | ||
strict-labels: false | ||
|
||
# configure ignore rules | ||
# see https://github.com/hadolint/hadolint#rules for a list of available rules. | ||
ignored: | ||
- DL3016 | ||
- DL3018 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
FROM python:3-alpine3.20 | ||
|
||
LABEL org.opencontainers.image.authors="Martin Kock <[email protected]>" \ | ||
org.opencontainers.image.url="https://github.com/deeagle/dspyce-demo-app" \ | ||
org.opencontainers.image.licenses="GPL3" \ | ||
org.opencontainers.image.title="dspyce-demo-app" \ | ||
org.opencontainers.image.description="Container which includes a DSpyce-demo to talk to DSpace-Demo." \ | ||
org.opencontainers.image.vendor="deeagle.de" | ||
|
||
WORKDIR /app | ||
|
||
COPY ["requirements.txt", "requirements.txt"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters