File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
net/grpc/gateway/docker/protoc_plugin Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM ubuntu:14.04
15
+ FROM debian:stretch
16
16
17
17
ARG MAKEFLAGS=-j8
18
18
@@ -23,22 +23,16 @@ RUN apt-get -qq update && apt-get -qq install -y \
23
23
curl \
24
24
git \
25
25
libtool \
26
- libpcre3-dev \
27
26
libssl-dev \
28
27
make \
29
- software-properties-common \
30
28
zip
31
29
32
30
WORKDIR /github/grpc-web
33
31
34
- RUN git clone https://github.com/grpc/grpc-web .
35
-
36
- COPY ./javascript ./javascript
37
-
38
- RUN ./scripts/init_submodules.sh
32
+ COPY . .
39
33
40
34
RUN cd ./third_party/grpc/third_party/protobuf && \
41
- ./autogen.sh && ./configure && make && make install
35
+ ./autogen.sh && ./configure && make && make install && ldconfig
42
36
43
37
RUN cd ./javascript/net/grpc/web && \
44
38
make protoc-gen-grpc-web
You can’t perform that action at this time.
0 commit comments