
Trivy is used in the CI after building our Docker image. It scans the Docker image and our dependencies for known vulnerabilities. The docker-make image is a simple docker:latest containing make.
4 lines
51 B
Docker
4 lines
51 B
Docker
FROM docker:latest
|
|
|
|
RUN apk update && apk add make
|