Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 536 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 536 Bytes

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

😱