2021-06-01 07:55:08 +00:00
|
|
|
# copy from https://raw.githubusercontent.com/grpc/grpc-web/master/net/grpc/gateway/docker/grpcwebproxy/Dockerfile
|
|
|
|
|
2021-09-21 12:58:26 +00:00
|
|
|
FROM golang:1.17-alpine3.13
|
2021-06-01 07:55:08 +00:00
|
|
|
|
|
|
|
RUN apk add --no-cache curl git ca-certificates && \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
ARG VERSION=0.14.0
|
|
|
|
|
|
|
|
WORKDIR /tmp
|
|
|
|
|
|
|
|
RUN curl -sS https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
|
|
|
RUN wget https://github.com/improbable-eng/grpc-web/archive/v$VERSION.tar.gz
|
|
|
|
|
|
|
|
WORKDIR /go/src/github.com/improbable-eng/
|
|
|
|
|
|
|
|
RUN tar -zxf /tmp/v$VERSION.tar.gz -C .
|
|
|
|
RUN mv grpc-web-$VERSION grpc-web
|
|
|
|
|
|
|
|
WORKDIR /go/src/github.com/improbable-eng/grpc-web
|
|
|
|
|
|
|
|
RUN dep ensure && \
|
|
|
|
go env -w GO111MODULE=auto && \
|
|
|
|
go install ./go/grpcwebproxy
|
|
|
|
|
|
|
|
# ADD ./etc/localhost.crt /etc
|
|
|
|
# ADD ./etc/localhost.key /etc
|
|
|
|
|
|
|
|
ENV BKD_HOST=backend-run
|
|
|
|
ENV BKD_PORT=50001
|
|
|
|
|
|
|
|
ENTRYPOINT [ "/bin/sh", "-c", "exec /go/bin/grpcwebproxy \
|
|
|
|
--backend_addr=${BKD_HOST}:${BKD_PORT} \
|
|
|
|
--run_tls_server=false \
|
|
|
|
--use_websockets \
|
|
|
|
--allow_all_origins " ]
|