We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb9e277 commit da71230Copy full SHA for da71230
Dockerfile
@@ -1,5 +1,11 @@
1
from golang:alpine as builder
2
-RUN apk --no-cache add git
+RUN apk --no-cache add git curl
3
+RUN curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh && \
4
+ mkdir -p $GOPATH/src/github.com/improbable-eng/grpc-web && \
5
+ cd $GOPATH/src/github.com/improbable-eng && \
6
+ git clone https://github.com/improbable-eng/grpc-web && \
7
+ cd grpc-web && \
8
+ dep ensure
9
RUN go get -u github.com/improbable-eng/grpc-web/go/grpcwebproxy
10
11
from alpine
0 commit comments