-
-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added debian dotnet images Signed-off-by: Prabhu Subramanian <prabhu@appthreat.com> --------- Signed-off-by: Prabhu Subramanian <prabhu@appthreat.com>
- Loading branch information
Showing
13 changed files
with
458 additions
and
7 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
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
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
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,21 @@ | ||
FROM ghcr.io/cyclonedx/debian-dotnet6:master | ||
|
||
LABEL maintainer="CycloneDX" \ | ||
org.opencontainers.image.authors="Team AppThreat <cloud@appthreat.com>" \ | ||
org.opencontainers.image.source="https://github.com/CycloneDX/cdxgen" \ | ||
org.opencontainers.image.url="https://github.com/CycloneDX/cdxgen" \ | ||
org.opencontainers.image.version="rolling" \ | ||
org.opencontainers.image.vendor="AppThreat" \ | ||
org.opencontainers.image.licenses="Apache-2.0" \ | ||
org.opencontainers.image.title="cdxgen" \ | ||
org.opencontainers.image.description="Rolling image with cdxgen SBOM generator for dotnet 6 apps" \ | ||
org.opencontainers.docker.cmd="docker run --rm -v /tmp:/tmp -p 9090:9090 -v $(pwd):/app:rw -t ghcr.io/cyclonedx/cdxgen-debian-dotnet6:v11 -r /app --server" | ||
|
||
ENV CDXGEN_IN_CONTAINER=true \ | ||
PYTHONPATH=/opt/pypi | ||
ENV PATH=${PATH}:/usr/local/bin:/opt/pypi/bin: | ||
|
||
RUN npm install -g @cyclonedx/cdxgen --omit=dev \ | ||
&& pip install --upgrade --no-cache-dir blint --target /opt/pypi | ||
|
||
ENTRYPOINT ["cdxgen"] |
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,21 @@ | ||
FROM ghcr.io/cyclonedx/debian-dotnet8:master | ||
|
||
LABEL maintainer="CycloneDX" \ | ||
org.opencontainers.image.authors="Team AppThreat <cloud@appthreat.com>" \ | ||
org.opencontainers.image.source="https://github.com/CycloneDX/cdxgen" \ | ||
org.opencontainers.image.url="https://github.com/CycloneDX/cdxgen" \ | ||
org.opencontainers.image.version="rolling" \ | ||
org.opencontainers.image.vendor="AppThreat" \ | ||
org.opencontainers.image.licenses="Apache-2.0" \ | ||
org.opencontainers.image.title="cdxgen" \ | ||
org.opencontainers.image.description="Rolling image with cdxgen SBOM generator for dotnet 8 apps" \ | ||
org.opencontainers.docker.cmd="docker run --rm -v /tmp:/tmp -p 9090:9090 -v $(pwd):/app:rw -t ghcr.io/cyclonedx/cdxgen-debian-dotnet8:v11 -r /app --server" | ||
|
||
ENV CDXGEN_IN_CONTAINER=true \ | ||
PYTHONPATH=/opt/pypi | ||
ENV PATH=${PATH}:/usr/local/bin:/opt/pypi/bin: | ||
|
||
RUN npm install -g @cyclonedx/cdxgen --omit=dev \ | ||
&& pip install --upgrade --no-cache-dir blint --target /opt/pypi | ||
|
||
ENTRYPOINT ["cdxgen"] |
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,21 @@ | ||
FROM ghcr.io/cyclonedx/debian-dotnet9:master | ||
|
||
LABEL maintainer="CycloneDX" \ | ||
org.opencontainers.image.authors="Team AppThreat <cloud@appthreat.com>" \ | ||
org.opencontainers.image.source="https://github.com/CycloneDX/cdxgen" \ | ||
org.opencontainers.image.url="https://github.com/CycloneDX/cdxgen" \ | ||
org.opencontainers.image.version="rolling" \ | ||
org.opencontainers.image.vendor="AppThreat" \ | ||
org.opencontainers.image.licenses="Apache-2.0" \ | ||
org.opencontainers.image.title="cdxgen" \ | ||
org.opencontainers.image.description="Rolling image with cdxgen SBOM generator for dotnet 9 apps" \ | ||
org.opencontainers.docker.cmd="docker run --rm -v /tmp:/tmp -p 9090:9090 -v $(pwd):/app:rw -t ghcr.io/cyclonedx/cdxgen-debian-dotnet9:v11 -r /app --server" | ||
|
||
ENV CDXGEN_IN_CONTAINER=true \ | ||
PYTHONPATH=/opt/pypi | ||
ENV PATH=${PATH}:/usr/local/bin:/opt/pypi/bin: | ||
|
||
RUN npm install -g @cyclonedx/cdxgen --omit=dev \ | ||
&& pip install --upgrade --no-cache-dir blint --target /opt/pypi | ||
|
||
ENTRYPOINT ["cdxgen"] |
Oops, something went wrong.