Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 402 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 402 Bytes

Hello World Image

This is a simple hello world image which just prints "Hello World"

Btw, its only 1.9MB in size! (only the golang executable)

How do I run this image?

You can either build this image by yourself and run it:

docker build -t hello-world .
docker run --rm hello-world

or you can run the pre-built version from Docker Hub:

docker run --rm cedrickring/hello-world