Alpine Linux v3.8.1 with dmidecode v3.1 installed at /usr/sbin/dmidecode. 4MB.
9.9K
A handy basic image comprising of;
For previous tag 1:
I'd expect you use this image as a simple analysis tool.
Use this command to pull the image manually before runtime:
sudo docker pull itsthenetwork/alpine-dmidecode:latest
This command will start the container interactively and display the BIOS version and then be removed.
sudo docker run -it --name=dmi --rm --privileged itsthenetwork/alpine-dmidecode -s bios-version
If you wanted to install additional packages and build your own image based upon this one you'd start your Dockerfile like this:
FROM itsthenetwork/alpine-dmidecode:latest
RUN apk -add U -v package_name package_name
...
The Dockerfile used to create this image is available at the root of the file system, here it is anyway:
FROM alpine:latest
LABEL maintainer "Steven Iveson <[email protected]>"
COPY Dockerfile /Dockerfile
RUN apk --no-cache --update --verbose add grep bash dmidecode && \
rm -rf /var/cache/apk/* /tmp/* /sbin/halt /sbin/poweroff /sbin/reboot
ENTRYPOINT ["/usr/sbin/dmidecode"]
Content type
Image
Digest
Size
3.5 MB
Last updated
almost 8 years ago
docker pull itsthenetwork/alpine-dmidecode