-
Notifications
You must be signed in to change notification settings - Fork 1
/
client-dockerfile
26 lines (21 loc) · 1.08 KB
/
client-dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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 registry.cn-hangzhou.aliyuncs.com/knative-sample/golang:1.13-alpine3.10 as builder
ENV GO111MODULE=off
ENV GRPC_SERVER_ADDR=127.0.0.1:8080
# Copy local code to the container image.
WORKDIR /go/src/github.com/knative-sample/grpc-helloworld
COPY . .
# 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 grpc-client client/client.go
# 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 registry.cn-hangzhou.aliyuncs.com/knative-sample/alpine-sh:3.10.3
# RUN apk add --no-cache ca-certificates
# Copy the binary to the production image from the builder stage.
COPY --from=builder /go/src/github.com/knative-sample/grpc-helloworld/grpc-client /grpc-client
# Run the web service on container startup.
CMD ["/grpc-client"]