forked from namely/docker-protoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
114 lines (87 loc) · 3.05 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
ARG alpine=3.8
ARG go=1.11.0
ARG grpc
ARG grpc_java
FROM golang:$go-alpine$alpine AS build
# TIL docker arg variables need to be redefined in each build stage
ARG grpc
ARG grpc_java
RUN set -ex && apk --update --no-cache add \
bash \
make \
cmake \
autoconf \
automake \
curl \
tar \
libtool \
g++ \
git \
openjdk8-jre \
libstdc++ \
ca-certificates \
nss
WORKDIR /tmp
COPY all/install-protobuf.sh /tmp
RUN chmod +x /tmp/install-protobuf.sh
RUN /tmp/install-protobuf.sh ${grpc} ${grpc_java}
RUN git clone https://github.com/googleapis/googleapis
RUN curl -sSL https://github.com/uber/prototool/releases/download/v1.3.0/prototool-$(uname -s)-$(uname -m) \
-o /usr/local/bin/prototool && \
chmod +x /usr/local/bin/prototool
# Go get go-related bins
RUN go get -u google.golang.org/grpc
RUN go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
RUN go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger
RUN go get -u github.com/golang/protobuf/protoc-gen-go
RUN go get -u github.com/gogo/protobuf/protoc-gen-gogo
RUN go get -u github.com/gogo/protobuf/protoc-gen-gogofast
RUN go get -u github.com/ckaznocha/protoc-gen-lint
RUN go get -u github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc
# Add grpc-web support
RUN curl -sSL https://github.com/grpc/grpc-web/releases/download/1.0.4/protoc-gen-grpc-web-1.0.4-linux-x86_64 \
-o /tmp/grpc_web_plugin && \
chmod +x /tmp/grpc_web_plugin
FROM alpine:3.9 AS protoc-all
RUN set -ex && apk --update --no-cache add \
bash \
libstdc++ \
libc6-compat \
ca-certificates \
nodejs \
nodejs-npm
# Add TypeScript support
RUN npm i -g ts-protoc-gen@0.10.0
COPY --from=build /tmp/grpc/bins/opt/grpc_* /usr/local/bin/
COPY --from=build /tmp/grpc/bins/opt/protobuf/protoc /usr/local/bin/
COPY --from=build /tmp/grpc/libs/opt/ /usr/local/lib/
COPY --from=build /tmp/grpc-java/compiler/build/exe/java_plugin/protoc-gen-grpc-java /usr/local/bin/
COPY --from=build /tmp/googleapis/google/ /opt/include/google
COPY --from=build /usr/local/include/google/ /opt/include/google
COPY --from=build /usr/local/bin/prototool /usr/local/bin/prototool
COPY --from=build /go/bin/* /usr/local/bin/
COPY --from=build /tmp/grpc_web_plugin /usr/local/bin/grpc_web_plugin
COPY --from=build /go/src/github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger/options/ /opt/include/protoc-gen-swagger/options/
ADD all/entrypoint.sh /usr/local/bin
RUN chmod +x /usr/local/bin/entrypoint.sh
WORKDIR /defs
ENTRYPOINT [ "entrypoint.sh" ]
# protoc
FROM protoc-all AS protoc
ENTRYPOINT [ "protoc", "-I/opt/include" ]
# prototool
FROM protoc-all AS prototool
ENTRYPOINT [ "prototool" ]
# grpc-cli
FROM protoc-all as grpc-cli
ADD ./cli/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
WORKDIR /run
ENTRYPOINT [ "/entrypoint.sh" ]
# gen-grpc-gateway
FROM protoc-all AS gen-grpc-gateway
COPY gwy/templates /templates
COPY gwy/generate_gateway.sh /usr/local/bin
RUN chmod +x /usr/local/bin/generate_gateway.sh
WORKDIR /defs
ENTRYPOINT [ "generate_gateway.sh" ]