mirror of https://github.com/knative/client.git
23 lines
925 B
Docker
23 lines
925 B
Docker
# Use the offical Golang image to create a build artifact.
|
|
# This is based on Debian and sets the GOPATH to /go.
|
|
# https://hub.docker.com/_/golang
|
|
FROM golang:1.12 as builder
|
|
|
|
# Copy local code to the container image.
|
|
WORKDIR /go/src/knative.dev/client/test/test_images/helloworld
|
|
COPY ./test/test_images/helloworld/helloworld.go .
|
|
|
|
# Build the command inside the container.
|
|
# (You may fetch or manage dependencies here,
|
|
# either manually or with a tool like "godep".)
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -v -o helloworld
|
|
|
|
# Use a Docker multi-stage build to create a lean production image.
|
|
# https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds
|
|
FROM scratch
|
|
|
|
# Copy the binary to the production image from the builder stage.
|
|
COPY --from=builder /go/src/knative.dev/client/test/test_images/helloworld/helloworld /helloworld
|
|
|
|
# Run the web service on container startup.
|
|
CMD ["/helloworld"] |