mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
This allows getting more metrics from the output stream. PiperOrigin-RevId: 611289642
9 lines
198 B
Docker
9 lines
198 B
Docker
FROM golang:1.22 AS builder
|
|
|
|
COPY client.go /client.go
|
|
RUN CGO_ENABLED=0 go build -o /httpclient /client.go
|
|
|
|
FROM alpine:latest
|
|
COPY --from=builder /httpclient /usr/bin/
|
|
CMD ["/usr/bin/httpclient"]
|