container-hardening
container-hardening copied to clipboard
scripts which help harden containers
Results
2
container-hardening issues
Sort by
recently updated
recently updated
newest added
These changes mainly address issues #2 with word splitting. The solution, using temporary files for storing the find output, is described in the [Shellcheck Wiki](https://github.com/koalaman/shellcheck/wiki/SC2044). It isn't very clean, IMO....
Word splitting prevents successful image creation if any of the file paths contain spaces. To demonstrate the issue consider the following base image: ```dockerfile FROM debian RUN mkdir -p /usr/share/hw...