Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/cedrickring/hello-world-go
- Owner: cedrickring
- Created: 2018-10-27T08:53:51.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-23T21:55:42.000Z (about 6 years ago)
- Last Synced: 2024-10-26T17:52:50.559Z (3 months ago)
- Language: Dockerfile
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```