/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

infinitedigits.co
| | www.neerajsidhaye.com
1.8 parsecs away

Travel
| | Creating optimized docker image for GO application using multi stage build - using alpine image and then produce a small image with only binary in a scratch image. Let's read further...
| | pliutau.com
0.6 parsecs away

Travel
| | Software Engineering Lead with a passion for APIs, Web, Cloud, Microservices, DevOps, Kubernetes etc. Engineering Lead at solsten.io
| | memo.mx
1.7 parsecs away

Travel
| | Docker multi-stage build is a great way to build a container images with a minimal footprint. Compiled languages like Go or Rust can take advantage of this by just shipping a binary to a container This is an example from the official docs: FROM golang:1.16 WORKDIR /go/src/github.com/alexellis/href-counter/ RUN go get -d -v golang.org/x/net/html COPY app.go ./ RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o app . FROM alpine:latest RUN apk --no-cache add ca-certificates WORKDIR /root/ COPY --from=0 /go/src/github.
| | martinheinz.dev
22.3 parsecs away

Travel
| At this point probably everybody has heard about Docker and most developers are familiar with it, use it, and therefore know the basics such as how to ...