Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cedrickring/hello-world-go

A 1.9MB hello world docker image made with golang.
https://github.com/cedrickring/hello-world-go

Last synced: about 1 month ago
JSON representation

A 1.9MB hello world docker image made with golang.

Awesome Lists containing this project

README

        

# 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
```