/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

pythonspeed.com
| | nickjanetakis.com
2.7 parsecs away

Travel
| | We'll cover examples with Flask, Django, Rails, Node and Phoenix. The strategy is the same for any app.
| | andyfreeland.net
2.4 parsecs away

Travel
| | [AI summary] A technical guide demonstrating how to reduce Docker image sizes for Python applications by using Docker BuildKit's bind mount feature instead of copying layers in multi-stage builds.
| | memo.mx
2.4 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.
| | www.integralist.co.uk
16.9 parsecs away

Travel
|