Skip to content

Commit

Permalink
SYS-598 add trivy scan
Browse files Browse the repository at this point in the history
  • Loading branch information
instantlinux committed Jul 26, 2023
1 parent bfbef59 commit cb017b1
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 2 deletions.
40 changes: 39 additions & 1 deletion .image-gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ stages:
- Static Code Analysis
- Create Image
- Functional Tests
- Security Scan
- Promote Image

image: docker:19.03.8
image: docker:24.0.5

.registry_template: &registry_login
before_script:
Expand All @@ -34,10 +35,47 @@ test:
stage: Functional Tests
script: apk add make && cd images/$IMAGE && make test_functional

security_scan_trivy:
services: [ "docker:dind" ]
image:
name: aquasec/trivy:latest
entrypoint: [""]
stage: Security Scan
variables:
GIT_STRATEGY: none
TRIVY_CACHE_DIR: .trivycache/
TRIVY_DEBUG: "true"
TRIVY_EXIT_CODE: 1
TRIVY_FORMAT: json
TRIVY_OUTPUT: gl-container-scanning-report.json
TRIVY_SEVERITY: HIGH,CRITICAL
TRIVY_VULN_TYPE: os,library
script:
- export TAG=bld_$CI_PIPELINE_IID_${CI_COMMIT_SHORT_SHA}
- trivy image --clear-cache
- trivy image --download-db-only --no-progress
- trivy image "${REGISTRY}/${IMAGE}:${TAG}" --severity LOW,MEDIUM
--exit-code 0 --format table --output medium-vulns.txt
- cat medium-vulns.txt
- trivy image "${REGISTRY}/${IMAGE}:${TAG}"
cache:
paths: [ .trivycache ]
interruptible: true
retry:
max: 2
when: [ runner_system_failure, stuck_or_timeout_failure ]
timeout: 5m
artifacts:
reports:
container_scanning: gl-container-scanning-report.json
expire_in: 30 days
paths: [ medium-vulns.txt ]

promote_image:
stage: Promote Image
<<: *registry_login
script: apk add curl jq make && cd images/$IMAGE && make promote_image
interruptible: true
only:
refs: [ main, tags ]
variables: [ $REGISTRY_URI == "registry.gitlab.com" ]
1 change: 1 addition & 0 deletions images/git-dump/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ARG UID=212
COPY *.sh /usr/local/bin/
RUN apk add --no-cache --update curl dcron git=$GIT_VERSION jq \
openssh-client tzdata && \
apk upgrade libcrypto3 libssl3 && \
addgroup -g $GID $GROUP && \
adduser -u $UID -s /bin/sh -G $GROUP -g "git backup" -D $USERNAME && \
chmod o+rx,g+rx /usr/local/bin/*.sh
Expand Down
3 changes: 2 additions & 1 deletion images/git-pull/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ ENV DEST=. \
GIT_REPO=uri \
INTERVAL=0

RUN apk add --no-cache --update git=$GIT_VERSION openssh-client
RUN apk add --no-cache --update git=$GIT_VERSION openssh-client && \
apk upgrade libcrypto3 libssl3
VOLUME /git

COPY entrypoint.sh /root/
Expand Down

0 comments on commit cb017b1

Please sign in to comment.