A minimal Dockerization example with my C version of COWSAY. Its based on scratch image with 909kb
10K+
Cowsay! (an example of minimal Dockerization)
This is a minimal docker image based on docker scratch image with the addition of a C program rewriting the famous COWSAY Unix/Linux program.
It is a great example of how to deploy a binary code within your images.
It has a tiny size of just 909Kb
This is how to use it:
docker run cowsay Frank UnderwoodDockerfile content:
FROM scratch
ADD cowsay /
ENTRYPOINT ["/cowsay"]
CMD ["default_cmd"]
Content type
Image
Digest
Size
375.3 kB
Last updated
over 9 years ago
docker pull tadeukelly/cowsay