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

https://github.com/fmdlc/hello-world-go-training

My Helllo world app in Go
https://github.com/fmdlc/hello-world-go-training

Last synced: 5 months ago
JSON representation

My Helllo world app in Go

Awesome Lists containing this project

README

          

# go-hello-world
A simple hello-world application written in Go to illustrate multi-stage builds in Docker 17.05, and the builder pattern

`docker build -t single-stage -f Dockerfile.single .`

`docker build -t multi-stage -f Dockerfile.multi .`

```
$ docker images

REPOSITORY TAG IMAGE ID CREATED SIZE
single-stage latest 58328409dbf7 2 minutes ago 704MB
multi-stage latest 9af3c2a2bf40 23 minutes ago 5.54MB
```

😱