FROM golang:alpine AS builder WORKDIR /src COPY go.mod . RUN go mod download COPY . . RUN go build -o peckertest main.go FROM alpine:latest COPY --from=builder /src/peckertest /bin/peckertest CMD ["/bin/peckertest"]