Dockerfile, 1
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2025-05-15 12:52:02 +02:00
parent a9121bfa8c
commit 8f55432a94
4 changed files with 213 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM python:3.12.10-alpine3.21
APP_DIR=/opt/app
RUN \
mkdir -p $APP_DIR
COPY src/requirements.txt $APP_DIR
COPY src/sbom-dt-dd.py $APP_DIR
COPY dependencytrack-client/ $APP_DIR
COPY defectdojo-client/ $APP_DIR