All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
16 lines
265 B
Docker
16 lines
265 B
Docker
FROM python:3.12.10-alpine3.21
|
|
|
|
ARG 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/dependencytrack-client
|
|
COPY defectdojo-client/ $APP_DIR/defectdojo-client
|
|
|
|
|
|
|
|
|