Container Security

Hello DevSecOps experts, In this post we will discuss about how we can ensue container security scan. Snyk is one of the container scan tool option, we can sign up with GitHub or google account. Snyk will operates in three different ways: Snyk Web UI Snyk CLI Snyk Broker Heer we will experiment with Snyk CLI we can download from GitHub, as per your platform you can choose it. I'm going to work Preferrable option is to install the latest stable version. sudo apt update sudo apt install curl -y curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - sudo apt install -y nodejs npm install -g snyk When you run the above commands you will see the following output: snyk installation using npm package manager Ignore the npm warn lines which are expected as per the version incompatibilities. Prerequisites for snyk installation Docker engine you be installed already as per your operating system To have a docker image that can have vuln...