-
Notifications
You must be signed in to change notification settings - Fork 1
/
server-dockerfile
27 lines (21 loc) · 1.08 KB
/
server-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
27
# 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_MAX_CONCURRENT_STREAMS=2
# 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-server server/server.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-server /grpc-server
# Run the web service on container startup.
CMD ["/grpc-server"]