Install hexdump in an Ubuntu Docker image
hexdump
utility is part of bsdmainutils package.
Alternatively, you could use xxd
from the xxd package
Add the following command in the Dockerfile of the image:
RUN apt-get install bsdmainutils
hexdump
utility is part of bsdmainutils package.
Alternatively, you could use xxd
from the xxd package
Add the following command in the Dockerfile of the image:
RUN apt-get install bsdmainutils