summaryrefslogtreecommitdiff
path: root/contrib/helloimage/podman_hello_world.bash
diff options
context:
space:
mode:
authortomsweeneyredhat <tsweeney@redhat.com>2022-02-10 12:28:42 -0500
committertomsweeneyredhat <tsweeney@redhat.com>2022-02-10 15:45:04 -0500
commit40ba9f10e5fbdd3c9d36389107b8bf1caec6cef0 (patch)
tree1aa7eda5aeb0d5aa44f3358d137568d04e892e29 /contrib/helloimage/podman_hello_world.bash
parent6d2b54a731cf5ac9a7e760709748ee96a636d65e (diff)
downloadpodman-40ba9f10e5fbdd3c9d36389107b8bf1caec6cef0.tar.gz
podman-40ba9f10e5fbdd3c9d36389107b8bf1caec6cef0.tar.bz2
podman-40ba9f10e5fbdd3c9d36389107b8bf1caec6cef0.zip
Make the hello image leaner
[NO TESTS NEEDED] Change from using a bash script to a c file for running the image. With thanks to discussions with @afbjorklund, the Containerfile was rigged up to make the final image be only KB's in size. Also add USER 1000 to make the image test/run as non-root, and update the README.md Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
Diffstat (limited to 'contrib/helloimage/podman_hello_world.bash')
-rwxr-xr-xcontrib/helloimage/podman_hello_world.bash23
1 files changed, 0 insertions, 23 deletions
diff --git a/contrib/helloimage/podman_hello_world.bash b/contrib/helloimage/podman_hello_world.bash
deleted file mode 100755
index a8919c92b..000000000
--- a/contrib/helloimage/podman_hello_world.bash
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-###
-# ASCII art by the incomparable Máirín Duffy,
-# duffy@redhat.com, Twitter: @mairin
-# January 2022
-###
-echo " "
-echo "! ... Hello Podman World ... !"
-echo " "
-echo " .--\"--. "
-echo " / - - \\ "
-echo " / (O) (O) \\ "
-echo " ~~~| -=(,Y,)=- | "
-echo " .---. /\` \\ |~~ "
-echo " ~/ o o \\~~~~.----. ~~ "
-echo " | =(X)= |~ / (O (O) \\ "
-echo " ~~~~~~~ ~| =(Y_)=- | "
-echo " ~~~~ ~~~| U |~~ "
-echo ""
-echo "Project: https://github.com/containers/podman"
-echo "Website: https://podman.io"
-echo "Documents: https://docs.podman.io"
-echo "Twitter: @Podman_io"