Sign inSign up

tadeukelly/cowsay

By tadeukelly

Updated over 9 years ago

A minimal Dockerization example with my C version of COWSAY. Its based on scratch image with 909kb

Image
0

10K+

tadeukelly/cowsay repository overview

cowsay

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 Underwood

Dockerfile content:

FROM scratch
ADD cowsay /
ENTRYPOINT ["/cowsay"]
CMD ["default_cmd"]

Tag summary

Content type

Image

Digest

Size

375.3 kB

Last updated

over 9 years ago

docker pull tadeukelly/cowsay