Dockerfile
Best practice
missing-yum-clean-all
missing-yum-clean-all
This yum command does not end with ’&& yum clean all’. Running ‘yum clean all’ will remove cached data and reduce package size. (This must be performed in the same RUN step.)
use-absolute-workdir
use-absolute-workdir
Detected a relative WORKDIR. Use absolute paths. This prevents issues based on assumptions about the WORKDIR of previous containers.