Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Problem The current problem with our Dgraph Docker environment is that the base linux packages are NOT pinned. We build the Docker container in our CI setup every time, and are pulling the `latest` tags. It's a good practice to make these dependencies static. This will avoid potential issues that can arise from environment changes. ## Solution use `apt-cache policy <package name>` to identify the candidate version & old installed version. pin the packages correctly, and maintain them when CVE fixes are needed in the future.
- Loading branch information