diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-02-10 20:45:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-10 20:45:56 -0500 |
commit | 466b8991c4025006eeb43cb30e6dc990d92df72d (patch) | |
tree | 1aa7eda5aeb0d5aa44f3358d137568d04e892e29 /contrib/helloimage/podman_hello_world.c | |
parent | 6d2b54a731cf5ac9a7e760709748ee96a636d65e (diff) | |
parent | 40ba9f10e5fbdd3c9d36389107b8bf1caec6cef0 (diff) | |
download | podman-466b8991c4025006eeb43cb30e6dc990d92df72d.tar.gz podman-466b8991c4025006eeb43cb30e6dc990d92df72d.tar.bz2 podman-466b8991c4025006eeb43cb30e6dc990d92df72d.zip |
Merge pull request #13202 from TomSweeneyRedHat/dev/tsweeney/newhello
Make the hello image leaner
Diffstat (limited to 'contrib/helloimage/podman_hello_world.c')
-rw-r--r-- | contrib/helloimage/podman_hello_world.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/contrib/helloimage/podman_hello_world.c b/contrib/helloimage/podman_hello_world.c new file mode 100644 index 000000000..ee574130d --- /dev/null +++ b/contrib/helloimage/podman_hello_world.c @@ -0,0 +1,26 @@ +//### +// ASCII art by the incomparable Máirín Duffy, +// duffy@redhat.com, Twitter: @mairin +// January 2022 +//### + +#include <stdio.h> +int main() { + puts("\ +!... Hello Podman World ...!\n\ +\n\ + .--\"--. \n\ + / - - \\ \n\ + / (O) (O) \\ \n\ + ~~~| -=(,Y,)=- | \n\ + .---. /` \\ |~~ \n\ + ~/ o o \\~~~~.----. ~~ \n\ + | =(X)= |~ / (O (O) \\ \n\ + ~~~~~~~ ~| =(Y_)=- | \n\ + ~~~~ ~~~| U |~~ \n\ +\n\ +Project: https://github.com/containers/podman\n\ +Website: https://podman.io\n\ +Documents: https://docs.podman.io\n\ +Twitter: @Podman_io"); +} |