FROM golang:1.14 WORKDIR /go/src/app COPY . . RUN go build hello-world.go FROM scratch COPY --from=0 /go/src/app/hello-world . CMD ["./hello-world"]