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
- Host: GitHub
- URL: https://github.com/fmdlc/hello-world-go-training
- Owner: fmdlc
- License: apache-2.0
- Created: 2021-09-28T17:20:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-28T20:29:02.000Z (over 4 years ago)
- Last Synced: 2024-06-19T16:43:15.178Z (almost 2 years ago)
- Language: Go
- Size: 20.5 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```
😱