UNCLASSIFIED

Commit dd0e234c authored by Karpagam Balan's avatar Karpagam Balan
Browse files

Checkin Dockerfile that successfully built

parent cd7c2ae7
Pipeline #5803 failed with stage
ARG BASE_REGISTRY=registry.access.redhat.com FROM registry.access.redhat.com/ubi7/ubi:7.7-310
ARG BASE_IMAGE=ubi7/ubi
ARG BASE_TAG=7.8
FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
### Required Atomic/OpenShift Labels - https://github.com/projectatomic/ContainerApplicationGenericLabels ### Required Atomic/OpenShift Labels - https://github.com/projectatomic/ContainerApplicationGenericLabels
LABEL name="Solutions Delivery Platform: OWASP Dependency Check" \ LABEL name="Solutions Delivery Platform: OWASP Dependency Check" \
...@@ -40,7 +37,7 @@ ENV OWASP_DEP_CHK_VERSION 5.2.4 ...@@ -40,7 +37,7 @@ ENV OWASP_DEP_CHK_VERSION 5.2.4
### Fetch dependency bundle ### Fetch dependency bundle
RUN mkdir /root/tmp RUN mkdir /root/tmp
COPY owasp-dep-check-dependencies-$SDP_BUILD_DEPENDENCY_VERSION.tar.gz /root/tmp/owasp-dep-check-dependencies-$OWASP_DEP_CHK_VERSION.tar.gz RUN curl -vsSLo /root/tmp/owasp-dep-check-dependencies-$OWASP_DEP_CHK_VERSION.tar.gz https://github.com/boozallen/sdp-images/releases/download/${SDP_BUILD_DEPENDENCY_VERSION}/owasp-dep-check-dependencies-$SDP_BUILD_DEPENDENCY_VERSION.tar.gz
### Install mono-devel ### Install mono-devel
RUN cd /root/tmp && \ RUN cd /root/tmp && \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment